Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi!
I have the following scenario:
I'm trying to remove all blank rows based on year selection, but keeps the initial balance for those non blank rows.
I'm using the following measure to calculate the values in the matrix:
Is there any way to do it?
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
Based on your description, I use the sample data in PowerBI Desktop and can filter the matrix by creating a measure.
Here to determine if the profit is greater than 100000:
Measure = IF(MAX('financials'[Profit])>100000,1,0)
Add a filter to this visual:
Result:
Best Regards,
Zhu
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Based on your description, I use the sample data in PowerBI Desktop and can filter the matrix by creating a measure.
Here to determine if the profit is greater than 100000:
Measure = IF(MAX('financials'[Profit])>100000,1,0)
Add a filter to this visual:
Result:
Best Regards,
Zhu
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.