Forum Discussion
dana1
8 years agoFrequent Visitor
Help with Measure
hello, i have a table (CALL CENTER) that contain 4 measure's (and ather columns, but thay are not relevent to my QA) every measure calculate different percent- 1. X= improve avg wait time by 1...
- 8 years ago
HI dana1
Try replacing SELECTEDVALUE with VALUES
Then Select a single MONTH from DIM_date[month] slicer lets say "May"
Zubair_Muhammad
8 years agoCommunity Champion
Hi dana1
Try this MEASURE
Measure =
IF (
SELECTEDVALUE ( DIM_Date[Month] ) = "September",
[X],
IF (
SELECTEDVALUE ( DIM_Date[Month] ) = "May",
[Y],
IF ( SELECTEDVALUE ( DIM_Date[Month] ) = "July", [Z], [W] )
)
)- dana18 years agoFrequent Visitor
First of all, thanks for the help!
I'm trying to do the measure, but when i do SELECTEDVALUE i cant choose a column ( DIM_date[month] ) ,
i can only choose a measure..
any Suggestions?
- Zubair_Muhammad8 years agoCommunity Champion
HI dana1
Try replacing SELECTEDVALUE with VALUES
Then Select a single MONTH from DIM_date[month] slicer lets say "May"