Refresh Code Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the following code in a spreadsheet:

Function NetworkUserName() As String
Dim response
NetworkUserName = Environ("Username")
Application.Volatile
End Function


I have placed this worksheet on our company network so that many people can
access it. However, it saves my username and does not refresh to display the
current user's information unless they go to that cell and press Enter. How
can I get it to refresh when the file is opened?

Thanks!

~C
 
'-----------------------------------------------------------------
Private Sub Workbook_Open()
'-----------------------------------------------------------------
Worksheets("Sheet1").Range("A1").Value = Environ("Username")
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top