Forum Discussion
Rjesak
5 years agoHelper I
Display User Information on reports/dashboards
We have a table which includes user specific info (name, email address, location, etc.). I'd like for our reports and dashboards to show the user name and location. I have a report where I'm brought ...
- 5 years ago
you could do something like this, create a measure ;
User Location=var curruser = USERPRINCIPALNAME()returnCALCULATE(VALUES(shared_access[USER LOCATION]), FILTER(shared_access, curruser = shared_access[USER EMAIL] ))
Rjesak
5 years agoHelper I
That worked perfectly. Thanks so much.