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
Solved! Go to Solution.
TRy it this way
UserFirstName.Result
Or
Set(UserFirstName; First(Split(User().FullName, " ").Result).Result));
Please Accept as Solution if it solves your question Or just give it a Thumbs Up if it is helpful because this can help others.
LinkedIn: https://www.linkedin.com/in/manan-malhotra-vfx/
Want to support me! Buy me a Cup of Coffee?
TRy it this way
UserFirstName.Result
Or
Set(UserFirstName; First(Split(User().FullName, " ").Result).Result));
Please Accept as Solution if it solves your question Or just give it a Thumbs Up if it is helpful because this can help others.
LinkedIn: https://www.linkedin.com/in/manan-malhotra-vfx/
Want to support me! Buy me a Cup of Coffee?
Now I understand. Thank you