0

userFirstName() possible bug?

I get nothing with a formula using this:

 On
 

 Can anyone confirm?

4 replies

null
    • Fred
    • 1 mth ago
    • Reported - view

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

    • UweG
    • 1 mth ago
    • Reported - view

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

    • Alan_Cooke
    • 1 mth ago
    • Reported - view

    Last Name as well I see

    • John_Halls
    • 1 mth 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

Content aside

  • 1 mth agoLast active
  • 4Replies
  • 39Views
  • 4 Following