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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

calculated column doesn't show blanks

I have a column in the dataset (Query), which has 3 values: 1, 0 and null.

When creating visualizations, I figured I need a different representation of that column. So, I created a Calculated Column:

 

CalcCol = IF(Col1 = 1, "Yes", IF( Col1 = 0, "No", Blank()))

 

But I see only Yes, No values in the new calculated column. I don't see Blanks at all. I think they are combined with No.

 

However, if I crate a Custom column in Edit Queries window to achieve the same, I get all three values.

 

I want to understand why this is the case and would really like to have the calculated column work the desired way, instead of having to create Custom column in edit queries (where it means refreshing the entire dataset and is clumsy given I have lot of huge queries).

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous

This is the intended behaviour. Where boolean logic is involved, blanks are considered as having a numeric value of zero and boolean value of FALSE. What you are essentially saying here is, IF Col 1 = Zero or FALSE, then "No". A boolean comparison of a blank cell to the value of zero ( i.e. IF FALSE = FALSE) equates to TRUE and NOT FALSE, and hence the result. Therefore, one way is to not only compare the values, but also the datatype.

 

 

CalcCol =
IF (
    Table1[Col1] = 1,
    "Yes",
    IF ( ISNUMBER ( Table1[Col1] ) && Table1[Col1] = 0, "No", BLANK () )
)

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous

This is the intended behaviour. Where boolean logic is involved, blanks are considered as having a numeric value of zero and boolean value of FALSE. What you are essentially saying here is, IF Col 1 = Zero or FALSE, then "No". A boolean comparison of a blank cell to the value of zero ( i.e. IF FALSE = FALSE) equates to TRUE and NOT FALSE, and hence the result. Therefore, one way is to not only compare the values, but also the datatype.

 

 

CalcCol =
IF (
    Table1[Col1] = 1,
    "Yes",
    IF ( ISNUMBER ( Table1[Col1] ) && Table1[Col1] = 0, "No", BLANK () )
)

 

Anonymous
Not applicable

Thanks @Anonymous

 

It makes sense. But it's confusing and the expectation is not clear because it behaves differently in Edit Queries window.

 

In the Edit Queries window, I used "Column from Example" option for Adding a column. Had Yes for 1, No for 0 and left nulls as is. That have me three values in the new column. Isn't it the same thing as Boolean logic? I also used Conditional Columns with Rules for 1 and 0. Even in that case, I got Nulls.

 

I'm perplexed as to the difference in behavior between the two cases: Edit Queries window vs Report. 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 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.