DataCell +Content Cell

Team,
i want the value in the Data cell has

Welcome + $[SYS_USER]

what is the syntax i need to use

HI @Anil-470f.

One way to achieve this might be:

=CONCATENATE("Welcome ", $[SYS_USER])

2 Likes

You can also get more specific if you want.

=CONCATENATE("Welcome ", $[SYS_USER][First name])

2 Likes