Append text to a cell when a label is clicked

rdoulaghsingh

Board Regular
Joined
Feb 14, 2021
Messages
105
Office Version
  1. 365
Platform
  1. Windows
Good evening experts!

I have a spreadsheet with a few hundred rows that I'm trying to capture reviews on. Column A cells has "Reviewed" (using a label currently) all the way down. I'm open to suggestions if there is a better/easier method instead of using labels for click events.

I'm looking for a VBA code that will insert the username and the last reviewed date and time to the cell immediately to the right (column B) of the "Reviewed" cell when "Reviewed" is clicked. Here's the catch: I want it to append new users if the user does NOT exists in the cell, and if the user already exists I want it to keep the current user, but overwrite the last reviewed time. I'm currently using
VBA Code:
.Value = "User: " & Environ("username") & " Last reviewed: " & Now()
for obtaining the username and last reviewed time. Is there any way to do this?

Thanks in advance!

image_2022-04-28_172626622.png
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Is there a way to know what row a label control is in? I think you'd need that for sure and I have not found any property that would reveal that. Methinks I'd use Worksheet_BeforeDoubleClick to trigger the code because you definitely can know the row thus which adjacent cell(s) need modifying. Would be easier if you split the name and time into 2 columns.
 
Upvote 0
Is there a way to know what row a label control is in? I think you'd need that for sure and I have not found any property that would reveal that. Methinks I'd use Worksheet_BeforeDoubleClick to trigger the code because you definitely can know the row thus which adjacent cell(s) need modifying.
@Micron That I'm not sure of. I'm ok with just using plain text as well and just formatting the text. If the cell is clicked then add the text with the conditions. Not sure what the code would look like to add and append in the adjacent rows though.
 
Upvote 0
IMO, you don't want anyone changing info just because they click or tab into a cell. That's why I suggested the double click event, which might look like
VBA Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)

With Target
   If .Offset(0, 1) = "" Then
      .Offset(0, 1) = "User: " & Environ("username")
   End If
 
   .Offset(0, 2) = " Last reviewed: " & Now()
   Cancel = True
End With

End Sub
However, that will place the info in 2 separate columns since the construct is simpler. If you're not ok with that, would have to be edited. It's also based on my interpretation of
I want it to append new users if the user does NOT exists in the cell
which now that I think of it, it probably not correct. Maybe that means if the user name is in the cell, only edit the date, otherwise insert a line break and add this user
 
Upvote 0
Solution
IMO, you don't want anyone changing info just because they click or tab into a cell. That's why I suggested the double click event, which might look like
VBA Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)

With Target
   If .Offset(0, 1) = "" Then
      .Offset(0, 1) = "User: " & Environ("username")
   End If
 
   .Offset(0, 2) = " Last reviewed: " & Now()
   Cancel = True
End With

End Sub
However, that will place the info in 2 separate columns since the construct is simpler. If you're not ok with that, would have to be edited. It's also based on my interpretation of

which now that I think of it, it probably not correct. Maybe that means if the user name is in the cell, only edit the date, otherwise insert a line break and add this user
@Micron Thanks for the code sample. I'll give it a try when I get back to my desk. I'm trying to append in the same cell. So if user A clicks the A1 with "Reviewed", it stamps their username, date and time in B1. If user B comes along and clicks A1 then it would add an entry below User A's in B1. If user A goes back and click "Reviewed" again in A1, then it would change the date and time in B1 next to their username (or overwrite with a new entry) because there is already an entry in the cell for user A. Hopefully that makes sense.
 
Upvote 0
I think you'll find that line wrapping will be confusing unless you resize the row, otherwise line wraps will make appended names to not show in the sheet at some point and not at all in the formula bar unless you navigate over them with arrow key. Could concatenate names, as in Bob, Joe, Carol and then the date/time. That may not show you all the names in a cell but should make it obvious that there are more. To append, would look more like
VBA Code:
With Target
   If InStr(1, .Offset(0, 1).Value, Environ("username")) = 0 Then
      .Offset(0, 1).Value = .Offset(0, 1).Value & Chr(10) & Environ("username")
   End If
   
   .Offset(0, 2) = " Last reviewed: " & Now()
   Cancel = True
End With
but again, name and date are split into columns in that code.
 
Upvote 0
I think you'll find that line wrapping will be confusing unless you resize the row, otherwise line wraps will make appended names to not show in the sheet at some point and not at all in the formula bar unless you navigate over them with arrow key. Could concatenate names, as in Bob, Joe, Carol and then the date/time. That may not show you all the names in a cell but should make it obvious that there are more. To append, would look more like
VBA Code:
With Target
   If InStr(1, .Offset(0, 1).Value, Environ("username")) = 0 Then
      .Offset(0, 1).Value = .Offset(0, 1).Value & Chr(10) & Environ("username")
   End If
  
   .Offset(0, 2) = " Last reviewed: " & Now()
   Cancel = True
End With
but again, name and date are split into columns in that code.
@Micron Thanks for the swift reply. Unfortunately, this doesn't yield the desired results for appending a NEW user in B column if there are existing users who have reviewed.
 
Upvote 0
IMO, you don't want anyone changing info just because they click or tab into a cell. That's why I suggested the double click event, which might look like
VBA Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)

With Target
   If .Offset(0, 1) = "" Then
      .Offset(0, 1) = "User: " & Environ("username")
   End If
 
   .Offset(0, 2) = " Last reviewed: " & Now()
   Cancel = True
End With

End Sub
However, that will place the info in 2 separate columns since the construct is simpler. If you're not ok with that, would have to be edited. It's also based on my interpretation of

which now that I think of it, it probably not correct. Maybe that means if the user name is in the cell, only edit the date, otherwise insert a line break and add this user
@Micron I think this points me in the right direction. Thank you!
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,267
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top