Forum Discussion
Presentation variables
Hello Anonymous,
You can create a hardcoded table containing values : "Monthly","Quarterly" and "Yearly".
and a measure is to be created as :
Measure = IF ( ISFILTERED(Table[Column]) && SELECTEDVALUE(Table[Column])="Monthly",[Your Monthly measure],
ISFILTERED(Table[Column]) && SELECTEDVALUE(Table[Column])="Quarterly",[Your Quarterly measure],
[YTD Measure])
Hope this helps.
How can we equate ISFILTERED(Table[Column]) = Monthly .. what I understand is ISFILTERED(Table[Column]) is the Month column from the Calendar Dimension
- rajulshah7 years agoResident Rockstar
Hello,
Table[Column] is the column from the new hardcoded column, and here, we arent equating with ISFILTERED function but with the SELECTEDVALUE function.
Let me know if it still doesn't work.