Forum Discussion
CoronaAustralis
4 years agoFrequent Visitor
Dynamic Tiles based on selection slicer
Hi all experts, I would need to create a dynamic title. The slicer selection has A, B, C, D. If all selected, the title is all. If A,B,D, selected, the title is Group 1 Otherwise, the titl...
VahidDM
4 years agoSuper User
try this:
Measure =
VAR _A =
ADDCOLUMNS ( 'Table', "UNI", 10 ^ ( UNICODE ( MAX ( 'Table'[Item] ) ) - 64 ) )
VAR _B =
SUMX ( _A, [UNI] )
RETURN
IF ( _B = 30000, "Group 1", IF ( _B = 40000, "All", MAX ( 'Table'[Item] ) ) )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
CoronaAustralis
4 years agoFrequent Visitor
I am new to BI and i do not understand how the formula works on the question i post.