Forum Discussion
Filters on Tooltips
PPStar , the section of measure should filter based on the same filter you use on page.
Assume the filter is page name
calculate([Value measure], filter(Table, Table[Section] = selectedvalue(Page[Name]) )
- PPStar3 years agoHelper V
i dont understand this.
what is value measure?.
- NikhilChenna3 years agoSkilled Sharer
Hi PPStar ,
Use this below measure,
Section | Value
HR | 10
Finance | 14
Marketing | 12
Measure = calculate(SUM([Value]), filter(Table, Table[Section] = selectedvalue(Page[Name]) )
Regards,
Nikhil Chenna
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!- PPStar3 years agoHelper V
OK, i got the first part, dont understnad the second part SelectedValue(Page[Name]))
The SelectedValue is looking for a column Name when i enter page its greys out, do i have to hardcode the page name?
apologies for the basic questions, im a newbie.