Hi,
Is there a possibility where I can change display text in tableau on the basis of login.
For example, If Mark logins with his email id and password on tableau server dashboard, then it should say Hello Mark, or show data pertaining only for Mark.
Or If Sam logins then it should say Hello Sam or show data only for Sam.
2 answers
You Can create calculated fields with User functions and compare login name
Create calculated field 1
Create second to validate and print hello Mark
IF ISUSERNAME('Mark')= TRUE then 'Hello ' + [User]
ELSE 'Not User'
END