Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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 10%
2. Y= improve avg wait time by 2%
3. Z= improve avg wait time by 5%
4. W= conservation avg wait time.
and i have Another table that contain dates (DIM_DATE)
I need to create a report with hierarchySlicer by month, and when the users choose in the slicer september they will get the measure X , and when they choose in the slicer may they will get the measure Y, and when the users choose in the slicer july they will get the measure Z, Otherwise thay will get measure W.
i can't find a measure that will give me what i need..
any Suggestions?
Solved! Go to Solution.
HI @dana1
Try replacing SELECTEDVALUE with VALUES
Then Select a single MONTH from DIM_date[month] slicer lets say "May"
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] )
)
)
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?
HI @dana1
Try replacing SELECTEDVALUE with VALUES
Then Select a single MONTH from DIM_date[month] slicer lets say "May"
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |