Forum Discussion
Rjesak
Helper I
5 years agoDisplay 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] ))
vanessafvg
Community Champion
5 years agoyou could do something like this, create a measure ;
User Location=
var curruser = USERPRINCIPALNAME()
return
CALCULATE(VALUES(shared_access[USER LOCATION]), FILTER(shared_access, curruser = shared_access[USER EMAIL] ))
- Rjesak5 years ago
Helper I
So when I try to put this in a visual, I get an error that says "A table of multiple values was supplied where a single value was expected."