March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am building a report that has 10 KPI cards. I have 4 "groups" of 10 measures each to populate these KPI cards. Say these are groups A,B,C,D with measures A1, A2, B1, B2, C1, C2, D1, D2, etc... I would like to be able to display all of the A measures together, but then have a slicer that switches to all of the B measures, all of the C measures, and all of the D measures. They should go in the correct cards as well, meaning A1, B1, C1, and D1 would all go in the same KPI card. I have been messing around with Field Parameters, and I think this may be the right approach, but this is a bit more complicated than what I have been able to figure out. Would love any guidance you all have!
Solved! Go to Solution.
Create a table that lists all your measures with corresponding group information.
MeasuresTable =
DATATABLE(
"Group", STRING,
"MeasureName", STRING,
{
{"A", "A1"},
{"A", "A2"},
{"B", "B1"},
{"B", "B2"},
{"C", "C1"},
{"C", "C2"},
{"D", "D1"},
{"D", "D2"}
}
)
Create a dynamic measure that selects the appropriate measure based on the selected group and measure name.
SelectedMeasure =
VAR selectedGroup = SELECTEDVALUE(GroupTable[Group])
VAR selectedMeasureName = SELECTEDVALUE(MeasuresTable[MeasureName])
RETURN
SWITCH(
TRUE(),
selectedGroup = "A" && selectedMeasureName = "A1", [A1],
selectedGroup = "A" && selectedMeasureName = "A2", [A2],
selectedGroup = "B" && selectedMeasureName = "B1", [B1],
selectedGroup = "B" && selectedMeasureName = "B2", [B2],
selectedGroup = "C" && selectedMeasureName = "C1", [C1],
selectedGroup = "C" && selectedMeasureName = "C2", [C2],
selectedGroup = "D" && selectedMeasureName = "D1", [D1],
selectedGroup = "D" && selectedMeasureName = "D2", [D2],
BLANK()
)
-- Add slicers for both the GroupTable and the MeasuresTable. This will allow users to select the group and the specific measure within that group.
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
Thank you! I sort of simplified my question, so I had to make some modifications to your solution, but the overall technique was exactly what I needed. Thank you so much for your help.
Create a table that lists all your measures with corresponding group information.
MeasuresTable =
DATATABLE(
"Group", STRING,
"MeasureName", STRING,
{
{"A", "A1"},
{"A", "A2"},
{"B", "B1"},
{"B", "B2"},
{"C", "C1"},
{"C", "C2"},
{"D", "D1"},
{"D", "D2"}
}
)
Create a dynamic measure that selects the appropriate measure based on the selected group and measure name.
SelectedMeasure =
VAR selectedGroup = SELECTEDVALUE(GroupTable[Group])
VAR selectedMeasureName = SELECTEDVALUE(MeasuresTable[MeasureName])
RETURN
SWITCH(
TRUE(),
selectedGroup = "A" && selectedMeasureName = "A1", [A1],
selectedGroup = "A" && selectedMeasureName = "A2", [A2],
selectedGroup = "B" && selectedMeasureName = "B1", [B1],
selectedGroup = "B" && selectedMeasureName = "B2", [B2],
selectedGroup = "C" && selectedMeasureName = "C1", [C1],
selectedGroup = "C" && selectedMeasureName = "C2", [C2],
selectedGroup = "D" && selectedMeasureName = "D1", [D1],
selectedGroup = "D" && selectedMeasureName = "D2", [D2],
BLANK()
)
-- Add slicers for both the GroupTable and the MeasuresTable. This will allow users to select the group and the specific measure within that group.
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |