Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have field USER that it associated with specific DEPARTMENTS. The USER field = OSUser()
Is there any way to list the departments in a text box horizontally that related to the USER
The text box would look like: Departments : IT, Sales, Facilities
...where IT Sales and Facilities are the values in the DEPARTMENT field that relate to the USER (which is the current OSUser)
Something like.... USER=OSUser()=P(DEPARTMENTS) ?
Thanks in Advance.
Hi,
Try below,
=Concat(DISTINCT If(USER=OSUser(), DEPARTMENT), ',')
Awesome! Thank you,