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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
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.