+ Reply to Thread
Results 1 to 5 of 5

Checkbox reference

Hybrid View

  1. #1
    Registered User
    Join Date
    11-16-2008
    Location
    Dubai
    Posts
    73

    Checkbox reference

    Afternoon all

    I am using the following code

    Sub Process_CheckBox()
    
        Dim cBox As CheckBox
        Dim LRow As Integer
        Dim LRange As String
    
        LName = Application.Caller
        Set cBox = ActiveSheet.CheckBoxes(LName)
    
        'Find row that checkbox resides in
        LRow = cBox.TopLeftCell.Row
        LRange = "B" & CStr(LRow)
    
        'Change date in column B, if checkbox is checked
        If cBox.Value > 0 Then
            ActiveSheet.Range(LRange).Value = Date
    
        'Clear date in column B, if checkbox is unchecked
        Else
            ActiveSheet.Range(LRange).Value = Null
        End If
    
    End Sub
    I would like to amend this for a single check box so to not look at the check box row column B but rather an actual reference of C21.

    Should eb fairly straight forward can someone help???

    Thanks

    N
    Last edited by Nick_in_Dubai; 03-12-2009 at 03:04 AM.

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: Checkbox reference

    N

    Not sure I follow what you want to do. Do you want to have a specific action for the checkbox that is in C21?

    rylo

  3. #3
    Registered User
    Join Date
    11-16-2008
    Location
    Dubai
    Posts
    73

    Re: Checkbox reference

    Morning Rylo,

    If this is in a macro and assigned to a check box it will place the date in the corresponding cell to the bottom left of the checkbox when ticked.

    What i would like to do is amend the part that tells it to put the date in the bottom left to put the date in cell C21.

    Cheers

    N

  4. #4
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: Checkbox reference

    Hi

    you mean

    ActiveSheet.Range("C21").Value = Date
    rylo

  5. #5
    Registered User
    Join Date
    11-16-2008
    Location
    Dubai
    Posts
    73

    Re: Checkbox reference

    thats the one, thanks, its always the simple things.....

    N

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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