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 August 31st. Request your voucher.
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.