Forum Discussion
Keep initial balance but remove blanks rows
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
- Anonymous1 year ago
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,
ZhuIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- AnonymousNot applicable
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,
ZhuIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.