Excel 2003 - Double Click to enter user ID/ Windows ID?

sethmeister21

New Member
Joined
Mar 10, 2010
Messages
20
In Excel 2003 - how can I set VBA to insert user ID/ Windows ID into a cell when you double click mouse?

All help gratefully received.


regards
S
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Try this: right click the sheet tab, select View Code and paste in

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
Target.Value = Environ("username")
End Sub
 
Upvote 0
Hi VoG, great this works fine....but how do i restrict to column C so that users do not make errors all over the sheet?
 
Upvote 0
Try

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Column = 3 Then
    Cancel = True
    Target.Value = Environ("username")
End If
End Sub
 
Upvote 0
OK, sorry about this - one more question.....How about entering a timestamp by double-clicking on column D? This would display date and time e.g. 20-JAN-2010 11:15
 
Upvote 0
Try

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Select Case Target.Column
    Case 3: Cancel = True: Target.Value = Environ("username")
    Case 4: Cancel = True: Target.NumberFormat = "dd-mmm-yyyy hh:mm": Target.Value = Now
End Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,821
Messages
6,121,759
Members
449,048
Latest member
excelknuckles

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