+ Reply to Thread
Results 1 to 7 of 7

Can a woorksheet with VBA be made to expire, or stop working?

  1. #1
    Forum Contributor
    Join Date
    11-26-2008
    Location
    Ohio
    MS-Off Ver
    2016
    Posts
    326

    Can a woorksheet with VBA be made to expire, or stop working?

    I have some VBA code that puts symbols & words in a cell, based on the letter in the
    cell to the left, when it is clicked on. The code works fine.

    My question is: Is there a way to add code, (or do something else) to make my
    worksheets "expire / or stop working" on a certain date, or times opened?

    My code is below.

    Thanks in advance for any help.
    Richard


    [code]

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)

    Const WS_RANGE As String = "A1:BU1450" '<=== change to suit

    If Target.Count > 1 Then Exit Sub
    If Not Target.Offset(, -1).Value Like "[qwertyui]" Then Exit Sub

    Application.EnableEvents = False

    If Not Application.Intersect(Target, Range(WS_RANGE)) Is Nothing Then
    With Target
    Select Case .Offset(, -1).Value
    Case "q":
    .Font.Name = "arial"
    .Value = IIf(.Value = "x", "", "x")
    Case "w":
    .Font.Name = "Wingdings 2"
    .Value = IIf(.Value = "t", "", "t")
    Case "e":
    .Font.Name = "arial"
    .Value = IIf(.Value = "FE", "", "FE")
    Case "r":
    .Font.Name = "arial"
    .Value = IIf(.Value = "RN", "", "RN")
    Case "t":
    .Font.Name = "arial"
    .Value = IIf(.Value = "MN", "", "MN")
    Case "y":
    .Font.Name = "arial"
    .Value = IIf(.Value = "NI", "", "NI")
    Case "u":
    .Font.Name = "arial"
    Select Case .Value
    Case "Yes": .Value = "No"
    Case "No": .Value = "Maybe"
    Case "Maybe": .Value = "Never"
    Case "Never": .Value = ""
    Case "": .Value = "Yes"
    End Select
    Case "i":
    .Font.Name = "arial"
    Select Case .Value
    Case "One": .Value = "Two"
    Case "Two": .Value = "Three"
    Case "Three": .Value = ""
    Case "": .Value = "One"
    End Select
    End Select
    .Offset(0, -1).Activate
    End With
    End If

    Application.EnableEvents = True

    End Sub

    [code]

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Can a woorksheet with VBA be made to expire, or stop working?

    All you need to do is to use your code to check the current date.
    if the date is past your expiry date then set a flag in the spreadsheet
    your routine should check the flag often and stop if the flag is set
    then even if the user changes the system date the routine will not work.

  3. #3
    Forum Contributor
    Join Date
    11-26-2008
    Location
    Ohio
    MS-Off Ver
    2016
    Posts
    326

    Re: Can a woorksheet with VBA be made to expire, or stop working?

    Sorry, I am very new to code.
    So a VBA code, would check a date (I assume in a certain cell)
    then stop when it is past that date?
    That would work, how would I write the code? And can I have it check
    and date in a certain cell (say, c-900)?

  4. #4
    Forum Expert
    Join Date
    10-09-2014
    Location
    Newcastle, England
    MS-Off Ver
    2003 & 2013
    Posts
    1,986

    Re: Can a woorksheet with VBA be made to expire, or stop working?

    You could set a Workbook_Open event to check the date and then delete the Worksheet_Change code if the date has passed, trouble with that code is you need to grant access to the VBA Object which has to be done on a machine by machine basis (so if you have multi users it could be a pain).

    Please Login or Register  to view this content.

  5. #5
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Can a woorksheet with VBA be made to expire, or stop working?

    something Like

    if range("c900").value = format(now,"dd/mm/yyyy") then exit sub

  6. #6
    Forum Contributor
    Join Date
    11-26-2008
    Location
    Ohio
    MS-Off Ver
    2016
    Posts
    326

    Re: Can a woorksheet with VBA be made to expire, or stop working?

    Cant get it to work, but I'm most likely adding it in to my VBA wrong.
    Could you add to my existing code (all together) and send it back?

    Thanks!!!!

  7. #7
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Can a woorksheet with VBA be made to expire, or stop working?

    You need to post your spreadsheet or at least the sheet with the date in c900

    Then we can get it to work for you

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Made a simple template but not working
    By BNCOXUK in forum Excel General
    Replies: 3
    Last Post: 04-13-2013, 06:49 PM
  2. How to show only Working Day on expire date (Friday + 2 = Tuesday)
    By alexnkc in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-20-2013, 01:01 PM
  3. Replies: 0
    Last Post: 05-17-2005, 05:49 PM
  4. [SOLVED] Woorksheet locked on active cell
    By ESD in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-18-2005, 11:06 AM
  5. RS232 to Excel woorksheet
    By Franz in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-21-2005, 03:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1