Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
schapholkar
New Member

How to Filter Amount column to avoid 0.00 and blank

I have a dashboard in power bi that consists of Pie chart , Matrix and bar chart 

In filters tab on amount column I have selected Advance filter. Criteria given is amount is not blant and is not 0

still data with 0.00 is shown in report. 

Can someone help in here I have copied data as follows

 

InvoiceAccountNameISOCODESum of InvoiceAmount
ABCAE7541.49
CBXAE0.00
LALALAE73461.87
OPIAE56830.41
ABBBBAE21594.3
DFADFASDFAE498.81
j;lj;ljljAE3477.6
9euAE5638.77
4444AE0.00

 

1 ACCEPTED SOLUTION

Hi Thanks V-heq-msft,

I realised that my column is already a measure. I tried writing measure on this too but did not work. However I changed the filter from OR to AND

before it was is not blank or is not zero 0 now I made it is not blank and is not zero 😊

it is working as of now. any other situation I shall come back for sure

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @schapholkar ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:

vheqmsft_0-1710741489669.png

Solution 1:
If your InvoiceAmount column is in text format you need to select the following in the advance filtering:

vheqmsft_1-1710741656501.png

Solution 2:
Create a measure

Measure = IF(SELECTEDVALUE('Table'[InvoiceAmount.1]) = "0.00" || SELECTEDVALUE('Table'[InvoiceAmount.1]) = BLANK(),0,1)

Apply it to filter on this visual

vheqmsft_2-1710741735866.png

After each step you need to click on the apply filter.

Best regards,

Albert He

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

Hi Thanks V-heq-msft,

I realised that my column is already a measure. I tried writing measure on this too but did not work. However I changed the filter from OR to AND

before it was is not blank or is not zero 0 now I made it is not blank and is not zero 😊

it is working as of now. any other situation I shall come back for sure

schapholkar
New Member

schapholkar_0-1710498701691.png

if you see above rest of the columns in this metrix has filters which are working fine except the invoice amount

Gabry
Super User
Super User

Hello there,

The reason why rows are still displayed is because there are values present in those rows.

For instance, "cbx" may have a sum of 0.00, but it also contains "AE" in the code column. To hide the row, all columns should have blank values. Therefore, the potential solution depends on your specific requirements.

For instance, one approach could be to concatenate the name and the code columns. By doing so, you would eliminate the need for the code column, and rows with a sum of 0 amount would automatically disappear.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.