Forum Discussion
Anonymous
9 years agoNot applicable
Creating relationships to multiple columns and displaying data
I have imported a SharePoint list IncidentTracker. The "Created By" and "Modified By" columns are displayed as "CreatedByID" and "ModifiedByID" respectively. I also imported UserInformationList f...
- 9 years ago
CreatedByUser = CALCULATE(VALUES(User[Name]),USERELATIONSHIP(Incident[Createdby],User[User]))
ModifiedByUser = CALCULATE(VALUES(User[Name]),USERELATIONSHIP(Incident[Modifiedby],User[User]))
Vvelarde
Community Champion
9 years ago
CreatedByUser = CALCULATE(VALUES(User[Name]),USERELATIONSHIP(Incident[Createdby],User[User]))
ModifiedByUser = CALCULATE(VALUES(User[Name]),USERELATIONSHIP(Incident[Modifiedby],User[User]))
Anonymous
5 years agoNot applicable
If i want to use two more relation ships with the userealtionship function can it be possibel
Calculate(count(inc),userelationship(inc[country],user[country]),userelationship(inc[user],user[user])
Thanks in advance