Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to check on who ran the dashboard..
The function is osuser().
But i get NA\Elsa as result.
How do i get just "Elsa"?
Thanks
May be this:
=SubField(OSUser(), '\', 2)
or
=SubField(OSUser(), '\', -1)
May be this:
=SubField(OSUser(), '\', 2)
or
=SubField(OSUser(), '\', -1)
Hi,
Try
SubField(OSUser(), '\', 2)
OR
=Mid(OSUser(), Index(OSUser(), '\') + 1)
Hope this helps you.
Regards,
jagan.
subfield(OSUSER(),'\',2)