Re: Username upon Entry
- From: "Rick Rothstein \(MVP - VB\)" <rick.newsNO.SPAM@xxxxxxxxxxxxxxxxxx>
- Date: Tue, 17 Jun 2008 11:52:00 -0400
Perhaps this worksheet Change event code will do what you want. Right-click the tab for the worksheet you want this functionality and select View Code from the popup menu that appears. This will take you into the Visual Basic editor and automatically open the code window for the sheet whose tab you right-clicked on. Copy/Paste the following into that code window...
Private Sub Worksheet_Change(ByVal Target As Range)
Dim C As Range
If Target.Column = 1 Then
For Each C In Target
C.Offset(0, 1).Value = Environ("USERNAME")
Next
End If
End Sub
Any changes made in Column A (including deleting an entry) will put the username in the same row in Column B.
Rick
"NPell" <noalenpell@xxxxxxxxx> wrote in message news:6ad2415c-bd66-46a5-b5b7-cf8cef60840b@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hello,
I am trying to create a way of logging a persons XP Username when they
put a cell value in a specific cell.
For Example;
User puts "X" in Cell A1, their username is returned in B1.
Thanks if you can help.
.
- References:
- Username upon Entry
- From: NPell
- Username upon Entry
- Prev by Date: Re: Macro based on Cell Value
- Next by Date: Re: Formatting numbers with leading and trailing zero's
- Previous by thread: Username upon Entry
- Next by thread: Macro based on Cell Value
- Index(es):
Relevant Pages
|