Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi, quick question, I have a solution that allows my report users to add/remove the display of measure data in a Matrix visual. However, as you can see, the solution is not ideal.
Is there a way to add/remove the measure itself and not just the data?
Thanx in advance.
Solved! Go to Solution.
Hi, @pawlowski6132
After the test, I can just use measures to achieve the dynamic display of measures' data based on the Slicer selection, the title can’t disappear because the measures are placed into the value of the Matrix and they won’t disappear until you delete them from the Matrix manually, here are my steps:
I created the measures for the measures I want to slicer by the selection of Slicer:
Measure11 =
var _selectedmeasure=
SELECTCOLUMNS(ALLSELECTED(Slicer),"1",[name])
return
IF("Measure1" in _selectedmeasure,[Measure1],BLANK())
Measure22 =
var _selectedmeasure=
SELECTCOLUMNS(ALLSELECTED(Slicer),"1",[name])
return
IF("Measure2" in _selectedmeasure,[Measure2],BLANK())
Measure33 =
var _selectedmeasure=
SELECTCOLUMNS(ALLSELECTED(Slicer),"1",[name])
return
IF("Measure3" in _selectedmeasure,[Measure3],BLANK())
And I created a Matrix and a Slicer table and place like this:
You can download my test pbix file here
Here are some possible ways to achieve adding/Removing matrix columns based on Slicer, you can check if they can meet your requirement in your situation:
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @pawlowski6132
After the test, I can just use measures to achieve the dynamic display of measures' data based on the Slicer selection, the title can’t disappear because the measures are placed into the value of the Matrix and they won’t disappear until you delete them from the Matrix manually, here are my steps:
I created the measures for the measures I want to slicer by the selection of Slicer:
Measure11 =
var _selectedmeasure=
SELECTCOLUMNS(ALLSELECTED(Slicer),"1",[name])
return
IF("Measure1" in _selectedmeasure,[Measure1],BLANK())
Measure22 =
var _selectedmeasure=
SELECTCOLUMNS(ALLSELECTED(Slicer),"1",[name])
return
IF("Measure2" in _selectedmeasure,[Measure2],BLANK())
Measure33 =
var _selectedmeasure=
SELECTCOLUMNS(ALLSELECTED(Slicer),"1",[name])
return
IF("Measure3" in _selectedmeasure,[Measure3],BLANK())
And I created a Matrix and a Slicer table and place like this:
You can download my test pbix file here
Here are some possible ways to achieve adding/Removing matrix columns based on Slicer, you can check if they can meet your requirement in your situation:
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please look into the functionality of Calculation Groups and SELECTEDMEASURE()
thanx, will do
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
103 | |
75 | |
46 | |
39 | |
32 |
User | Count |
---|---|
163 | |
90 | |
66 | |
46 | |
43 |