Dynamic text based on User

Hello all!

I am building an app and I’d like to welcome all users with a “Hello NAME_OF_USER :wave:” message at the dashboard.

Please have a look to my settings and let me know what I’m doing wrong…

Thanks in advance!!

Hi @rafa_flama !

You need to wrap Hello between quotes, and add a plus symbol:
"Hello " + yourVariable

The quotes indicates that the text you typed is a string (and not a variable).
The + symbol is to concatenate the string on the left and the variable on the right.

1 Like

thanks a lot! learning form scratch :slight_smile:

1 Like