Hello,
as I try to understand this Software, I stumble across a difficulty for me to understand:
Is there a possibility to display the value of a variable (doesnt matter if Global or Local) on a text label? Here users First name is stored in a global variable:
Set(UserFirstName; First(Split(User().FullName;" ")));;
Here users first name is displayed on a text label:
First(Split(User().FullName, " ").Result).Result
I would like to display the value of the global variable on a text label.
Thank you1