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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Not showing column blank when there is no record in the column

I am working on below query where I want show the status based on the comparisio between  dates in two column.When  a row in "Promised Receipt Date" column does not have any record ,I want it either remain blank or give a specific message in "Status " column but in this case ,it gives "Shipment Ahead Of time" as status.If someone cant help me fix below query.

 

Status = IF(([Promised_Receipt_Date]<[Expected_Receipt_Date]),"Shipment Ahead Of time", IF([Promised_Receipt_Date]>[Expected_Receipt_Date],"Late Shipmemt Promise", IF([Promised_Receipt_Date]=[Expected_Receipt_Date],"Shipment Just On Time", If(ISBLANK([Promised_Receipt_Date]),"No Promised Receipt Date"))))
 
 
 

image.png

 
 
 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hello @Anonymous ,

Put Isblank condition first, 

If its not blank then it will go for comparison conditions.
Status =
            IF(ISBLANK([Promised_Receipt_Date]), "No Promised Receipt Date",
                IF( [Promised_Receipt_Date] < [Expected_Receipt_Date] , "Shipment Ahead Of time",
                   IF([Promised_Receipt_Date] > [Expected_Receipt_Date], "Late Shipmemt Promise",
                       "Shipment Just On Time" )
       ))

 

Best Regards,
Nirav

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hello @Anonymous ,

Put Isblank condition first, 

If its not blank then it will go for comparison conditions.
Status =
            IF(ISBLANK([Promised_Receipt_Date]), "No Promised Receipt Date",
                IF( [Promised_Receipt_Date] < [Expected_Receipt_Date] , "Shipment Ahead Of time",
                   IF([Promised_Receipt_Date] > [Expected_Receipt_Date], "Late Shipmemt Promise",
                       "Shipment Just On Time" )
       ))

 

Best Regards,
Nirav

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Users online (27)