i am creating an app, and i want the app to welcome the “user name”
is it possible in UiPath app..
this is my main menu, and i want the app to welcome the user name to the caselog app i made.
hope you can help me on this one, thank you!!
You can show a “Welcome User” message in UiPath Apps by using the built‑in user context.
Just add a Label, open the Text expression, and enter:
"Welcome " + CurrentUser.DisplayName
This automatically picks up the name of whoever is logged in, so everyone sees a personalized greeting.
You may also refer the official documentation.
awesome it worked, thank you.