The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
Im creating two columns with measures in matrix, and i want to only keep the row with values (either in one column or both columns). How do i do that? Thanks.
Solved! Go to Solution.
Create a Measure:
IF(SUM(Ending_Balance)+Sum(Last_Year_Ending_Balance)=0 || SUM(Ending_Balance)+Sum(Last_Year_Ending_Balance)=BLANK(),0,1))
Put the measure in Filter pane and assign it to 0.
Proud to be a Super User! | |
Power BI File attached, I created a measure that SUM the all measures and used as filter, if its greater that zero, then it should be presented in table.
for blank rows Uncheck the Show items with no data
Regards,
Fahad Qadir
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Power BI File attached, I created a measure that SUM the all measures and used as filter, if its greater that zero, then it should be presented in table.
for blank rows Uncheck the Show items with no data
Regards,
Fahad Qadir
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Create a Measure:
IF(SUM(Ending_Balance)+Sum(Last_Year_Ending_Balance)=0 || SUM(Ending_Balance)+Sum(Last_Year_Ending_Balance)=BLANK(),0,1))
Put the measure in Filter pane and assign it to 0.
Proud to be a Super User! | |