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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Replacing Blank

Hi, I am using couple of "single card visual".For each card visual i am using a different column, these columns have "1" and "0" as value. I am showing count of only "0"s using advanced filter because these are the failure. Now when there are no "0" in a column it returns as "(Blank)". I want to change this "(Blank)" with either "None" OR "0" OR "".

Col1   Col2   Col3
 0         1         1
 0         0         1
 0         1         1
 0         0         1

The Result i get in cards

Card 1= 4 ( count of "0"s, since i have filtered this using "is" in advance filter option.
Card 2= 2 
Card 3= (Blank) (since there are no 0s it is returning (Blank)
I want this blank to be "None" or simply "0" or ""

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous,

Create the following measures in your table.

Count of 0 = CALCULATE(COUNT(Table[Col3]),Table[Col3]=0)
outputmeasure = IF([Count of 0]=BLANK(),"None",[Count of 0])
1.JPG


Regards,
Lydia

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

@Anonymous,

Create the following measures in your table.

Count of 0 = CALCULATE(COUNT(Table[Col3]),Table[Col3]=0)
outputmeasure = IF([Count of 0]=BLANK(),"None",[Count of 0])
1.JPG


Regards,
Lydia

Anonymous
Not applicable

@Anonymous it worked. however instead of creating 2 measures i nested them together and used it as below

 

Col_Cnt = IF(CALCULATE(COUNT(Table[Col3]),Table[Col3]=0)=Blank(),"None",CALCULATE(COUNT(Table[Col3]),Table[Col3]=0))


Many Thanks 🙂 .

mede
Resolver I
Resolver I

You can just wrap your measure with an IF.

 

Count of zeros = CALCULATE(COUNT(Col1), Col1 = 0)

 

Showing blank if result is 0:

= IF(Count of zeros = 0, BLANK(), Count of zeros)


Let me know if it works.

Anonymous
Not applicable

@mede it isnt working still giving "(Blank)"

i created a measure with 
Sold To_Count = IF(Data[SOLD-TO]=0,BLANK(),Data[SOLD-TO])

 

then in advanced filter i used the following condition (is not 1) and also tried with (is 0).

Hi @Anonymous, i think i might have misunderstood that you need blanks. In  any case, glad that you found a solution.

Anonymous
Not applicable

@Med thanks to you too.

Helpful resources

Announcements
Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.