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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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