Forum Discussion
Using a users latest value in a pie chart
- Anonymous7 years ago
HI brettg,
My formula will return max date based on user, when you use it on summary users, it only return max one form summary users.
I modify my formula to create variable to store summarized value and use current grade to lookup related records.measure = VAR currGrade = SELECTEDVALUE ( Table[Grade] ) VAR temp = ADDCOLUMNS ( SUMMARIZE ( ALLSELECTED ( Table ), [User], "LastDate", MAX ( Table[Date] ) ), "Grade", LOOKUPVALUE ( Table[Grade], Table[User], [User], Table[Date], [LastDate] ) ) RETURN COUNTAX ( FILTER ( temp, [Grade] = currGrade ), [User] )Regards,
Xiaoxin Sheng
Hi Anonymous
Thanks for your reply.
This is what I was looking for, a measure you can use as a value!
But I think this is only taking a max date per grade?
If you see the table I have at the top, it shows the latest grade for each user (Medium, High, Medium)
When I add the formula as a value to my pie chart, it is returning a low grade though?
Thanks for your help with this!
Brett
HI brettg,
My formula will return max date based on user, when you use it on summary users, it only return max one form summary users.
I modify my formula to create variable to store summarized value and use current grade to lookup related records.
measure =
VAR currGrade =
SELECTEDVALUE ( Table[Grade] )
VAR temp =
ADDCOLUMNS (
SUMMARIZE ( ALLSELECTED ( Table ), [User], "LastDate", MAX ( Table[Date] ) ),
"Grade", LOOKUPVALUE ( Table[Grade], Table[User], [User], Table[Date], [LastDate] )
)
RETURN
COUNTAX ( FILTER ( temp, [Grade] = currGrade ), [User] )
Regards,
Xiaoxin Sheng
- brettg7 years agoHelper II
Anonymous
Incredible!
Just what I wanted. I was thinking to myself, surely I can use a temp table like I would on SQL.. and there you have it!
Thank you so much for this solution.
Kind regards,
Brett