ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Assign cell value from VBA function (https://www.excelbanter.com/excel-programming/308765-assign-cell-value-vba-function.html)

easy_forshezee[_2_]

Assign cell value from VBA function
 
Hello,

Please help out a newbie. How can I assign a cell value from a VBA
function? I have the following in my VBA code:
Private Sub Workbook_Open()
MsgBox username()
End Sub


' Return the user's name.
Public Function username() As String
Const UNLEN = 256 ' Max user name length.
Dim user_name As String
Dim name_len As Long

user_name = Space$(UNLEN + 1)
name_len = Len(user_name)
If GetUserName(user_name, name_len) = 0 Then
username = "<unknown"
Else
username = Left$(user_name, name_len - 1)
End If
End Function


This works fine for displaying the Msgbox, but I'd like to put the
username in a specific spreadsheet cell.

Any help is appreciated.
Eri

--
Message posted from http://www.ExcelForum.com


easy_forshezee[_3_]

Assign cell value from VBA function
 
Found what I needed.....


Private Sub Workbook_Open()
'MsgBox username()
Sheets("Sheet1").Cells(1, "A") = username()

End Su

--
Message posted from http://www.ExcelForum.com



All times are GMT +1. The time now is 11:56 PM.

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