How to show current user name in a cell?

前端 未结 6 673
太阳男子
太阳男子 2021-02-02 11:26

In most of the online resource I can find usually show me how to retrieve this information in VBA. Is there any direct way to get this information in a cell?

For example

6条回答
  •  一生所求
    2021-02-02 11:57

    The simplest way is to create a VBA macro that wraps that function, like so:

    Function UserNameWindows() As String
        UserName = Environ("USERNAME")
    End Function
    

    Then call it from the cell:

    =UserNameWindows()
    

    See this article for more details, and other ways.

提交回复
热议问题