The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Is there a way for me to lock the columns on a matrix so they don't filter out when a user selects a model in the slicer on the report? I would like to keep the other columns because we have images of the product over the columns. For example, if you select Model B in the slicer it puts Model B's data under the Model A picture. Any help would be greatly appreciated.
Current Outcome if you select a model in the slicer
Solved! Go to Solution.
I can only imagine your data model, but in the common case you can do the next:
a) create an once-column "Models" Table
b) in your "Data" table create a "Model" column (I assume it already exists).
c) create relationships Models-Data
d) use 'Models'[Model] column as Columns for matrix
e) use 'Data'[Model] column as a slicer
f) create a measure
_mValue = CALCULATE ( SUM (Data[Value]) ) + 0
g) use new measure as a value for matrix
h) enjoy:
I can only imagine your data model, but in the common case you can do the next:
a) create an once-column "Models" Table
b) in your "Data" table create a "Model" column (I assume it already exists).
c) create relationships Models-Data
d) use 'Models'[Model] column as Columns for matrix
e) use 'Data'[Model] column as a slicer
f) create a measure
_mValue = CALCULATE ( SUM (Data[Value]) ) + 0
g) use new measure as a value for matrix
h) enjoy:
Thank you for the help. That worked