0

userFirstName() possible bug?

I get nothing with a formula using this:

 On
 

 Can anyone confirm?

4 replies

null
    • Fred
    • 2 mths ago
    • Reported - view

    I can confirm that userFirstName() doesn't return anything. The other user... commands return data.

    • UweG
    • 2 mths ago
    • Reported - view

    It's a known Bug by Ninox in MacOs App v3.13.6

    • Alan_Cooke
    • 2 mths ago
    • Reported - view

    Last Name as well I see

    • John_Halls
    • 2 mths ago
    • Reported - view

    You could create your own global functions

    function userForename() do
        let a := split(userName(), " ");
        first(a)
    end;
    function userSurname() do
        let a := split(userName(), " ");
        last(a)
    end
    

    Regards John