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 August 31st. Request your voucher.

Reply
vally57
Helper I
Helper I

Blank values are not calculated as expected

Hi Experts,
i have written the calculated column if([ship date] =blank(),1,0), but even [ship date] is blank , i'm getting blank instead of 1.
only few of blank values are considering  and showing 1, others displaying blank.
can you guys help me on this.
vally57_0-1710506085770.png

 

TIA
 
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @vally57 ,

 

In my test, if Delivery No and Ship Date are two fields in the table. Then blank() acts the same as isblank() provided by @sjoerdvn .

Column1 = if([Ship Date] = BLANK(),1,0)
Column2 = IF(ISBLANK([Ship Date]),1,0)

vkongfanfmsft_0-1710836983679.png


So in the screenshot you provided, what exactly are Delivery No and Ship Date referring to? Please provide the relevant test data and describe it.

 

Best Regards,
Adamk Kong

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @vally57 ,

 

In my test, if Delivery No and Ship Date are two fields in the table. Then blank() acts the same as isblank() provided by @sjoerdvn .

Column1 = if([Ship Date] = BLANK(),1,0)
Column2 = IF(ISBLANK([Ship Date]),1,0)

vkongfanfmsft_0-1710836983679.png


So in the screenshot you provided, what exactly are Delivery No and Ship Date referring to? Please provide the relevant test data and describe it.

 

Best Regards,
Adamk Kong

sjoerdvn
Super User
Super User

 if(ISBLANK([ship date]),1,0)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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