Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
I have a 'Production Table' with daily production output from different machines. It has the columns 'Production Date', 'Machine', 'Shift hours', 'Output'.
How can I display a matrix with 'Output'/'Machine Hours' with machine as rows that can be filtered with a slicer for production date?
I need to sumhow do sum('Output')/sum('Machine Hours') by machine but if I make a table of this the slicer will not change the values.
Please help!
Solved! Go to Solution.
@guyhjs , Try creating a new measure
OutputPerMachineHour = SUM('Production Table'[Output]) / SUM('Production Table'[Shift hours])
Add a new Matrix visual to your report.
Drag the 'Machine' column to the Rows field of the Matrix.
Drag the newly created measure OutputPerMachineHour to the Values field of the Matrix.
Add a Date Slicer:
Add a slicer visual to your report.
Drag the 'Production Date' column to the slicer.
Proud to be a Super User! |
|
@guyhjs , Try creating a new measure
OutputPerMachineHour = SUM('Production Table'[Output]) / SUM('Production Table'[Shift hours])
Add a new Matrix visual to your report.
Drag the 'Machine' column to the Rows field of the Matrix.
Drag the newly created measure OutputPerMachineHour to the Values field of the Matrix.
Add a Date Slicer:
Add a slicer visual to your report.
Drag the 'Production Date' column to the slicer.
Proud to be a Super User! |
|
This worked thanks Bhanu