Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
In a Matrix, I only want to see rows where the subtotal is non-zero. If it's negative, I want to see it. If it's positive, I want to see it. If it's 0, I don't want to see it. How do I hide this row for "ARI-004- ARI - Automotive Rentals, Inc." from the matrix?
Hi @MoMrCrane
Try this as a separate measure and use it in the visual level filter. You will need to get the total per customer.
ROUND (
CALCULATE (
SUM ( 'table'[column] ),
ALLEXCEPT ( 'dimension table', 'dimension table'[customer] )
),
2
)
Proud to be a Super User!
Hi,
I tried the measure and set it to both Not equal to 0 and also greater than .000000001 or less than -.000000001 and both still show customers where the invoice total is 0. Do you have other ideas on how to make these $0 customers not show up in the matrix?
Must be a case of how precise your decimals are. I would add a ROUND to the measure being used
ROUND ( [original measure], 2 )
And then in the visual filter, use this updated measure to filter the visual to not equals 0
Proud to be a Super User!
I'm not using a measure, i'm just using the Row Subtotals in Format Visual of the Matrix. How would I create a measure to sum the invoice totals for each customer in a Matrix?
I created the measure
and set it to show items when the value is not 0 but it doesn't hide the 0 invoice total rows.
You need to round the returned value.
ROUND( SUM ('Table'[Column), 2)
Proud to be a Super User!
I rounded the measure then set it as a filter on the Matrix visual but this customer still shows up even though their subtotal is 0.
Set a filter to not equal or contain 0.
May need to use between if rounding is involved than set filters to is greater than .00000001 and less than - .000000001.
*Note: Can use this trick for conditional formatting.
Upwards and Onwards!
Where is the filter for subtotal, so I can set it to 0? If it were the data I can do it, but I don't know how to set a filter for a subtotal of a matrix?
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
88 | |
80 | |
74 | |
55 | |
48 |
User | Count |
---|---|
118 | |
117 | |
80 | |
77 | |
73 |