obtain the login of spreadsheet user

I want to obtian in my spreedsheet the login name of the user is curently using it

You will need user code.
There is the Basic function Environ().
On Windows:

Sub someName()
...
UserName = Environ(" USERNAME")
...
End Sub