ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Can I automatically add user name to excel spreadsheet (https://www.excelbanter.com/excel-discussion-misc-queries/216949-can-i-automatically-add-user-name-excel-spreadsheet.html)

LRL_in_KC

Can I automatically add user name to excel spreadsheet
 
We have a template to create a form that I would like to have the users name
added to so I can tell who created the form

FSt1

Can I automatically add user name to excel spreadsheet
 
hi
you could have a macro return the user name
Sub usename()
MsgBox Environ("UserName")
'or
'[A1]=environ("UserName")
End Sub

or you could create a functions to retrun the user name
Public Function UseName()
UseName = Environ("UserName")
End Function

then use the formula on the sheet.....
=UseName()

regards
FSt1

"LRL_in_KC" wrote:

We have a template to create a form that I would like to have the users name
added to so I can tell who created the form



All times are GMT +1. The time now is 07:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com