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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
NipawanV
Helper I
Helper I

Replace two blank date fields with another date column

Hello, I created column formula called "Date3" to replace with date field in the other columns.  Every line went well give the correct results but on line 6 I used "AND" & "BLANK() to check two date fields if both are blank, it should return modified date.  But it's empty.  Here is the formula:

NipawanV_0-1646235016636.png

 

Date3 =
SWITCH(
TRUE(),
[Due Date (scheduledend)] = BLANK(), [Actual End Date],
[Actual End Date] = BLANK(), [Due Date (scheduledend)],
AND([Due Date (scheduledend)], [Actual End Date]) = BLANK(), activitypointers[modifiedon],
[Actual End Date]
)

 

Could you kindly advise what wrong in the formula ? 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @NipawanV ,

 

I have a test by your code, I and I could reproduce your problem. I think your issue should be caused that your conditional statement will go [Due Date (scheduledend)] = BLANK(), [Actual End Date] firstly, then it will return blank , there is something wrong in your And() function.

1.png

Try this code.

Date3 = 
IF (
    AND ( [Due Date (scheduledend)] = BLANK (), [Actual End Date] = BLANK () ),
    activitypointers[modifiedon],
    IF (
        [Due Date (scheduledend)] = BLANK (),
        [Actual End Date],
        IF (
            [Actual End Date] = BLANK (),
            [Due Date (scheduledend)],
            [Actual End Date]
        )
    )
)

Result is as below.

1.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@NipawanV , Try like

coalesce([Due Date (scheduledend)], [Actual End Date],[Due Date (scheduledend)],activitypointers[modifiedon])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak Many thanks but it doesn't work.  Apply the said line it doesn't show the result from line 7 as well. Line 7 in my formula if "Actual End Date" and "Activity Due Date " should pickup the result from "Actual End Date".  Now it's disappear.

See result in Date4 that applied your formula. (I used "created on" for the time being as it's the text field.  coalesce() doesn't allow me to use "modified on" which is the date field.) it doesn't return any date at all. 

Any more hints, please!! 

NipawanV_0-1646267602337.png

 




Anonymous
Not applicable

Hi @NipawanV ,

 

I have a test by your code, I and I could reproduce your problem. I think your issue should be caused that your conditional statement will go [Due Date (scheduledend)] = BLANK(), [Actual End Date] firstly, then it will return blank , there is something wrong in your And() function.

1.png

Try this code.

Date3 = 
IF (
    AND ( [Due Date (scheduledend)] = BLANK (), [Actual End Date] = BLANK () ),
    activitypointers[modifiedon],
    IF (
        [Due Date (scheduledend)] = BLANK (),
        [Actual End Date],
        IF (
            [Actual End Date] = BLANK (),
            [Due Date (scheduledend)],
            [Actual End Date]
        )
    )
)

Result is as below.

1.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello Rico, 

Many thanks indeed for the solution.  This is perfectly working well.  

With best regards,

Nipawan

Hello Rico,

many thanks for the revised code. i will run when i return to work next month 🙂

WBR, Nipawan

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.