cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
singleton2787
Helper III
Helper III

Simple question hopefully.. is one date field is blank, use another

DoneDate =
IF (
    'WorkItems Completed'[Custom_DateDeployed].[Date] = BLANK (),
   'WorkItems Completed'[Custom_TargetDeploymentDate].[Date] )
 
 
This is not working... any ideas?
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Try it like this.

DoneDate =
IF (
    ISBLANK ( 'WorkItems Completed'[Custom_DateDeployed] ),
    'WorkItems Completed'[Custom_TargetDeploymentDate],
    'WorkItems Completed'[Custom_DateDeployed]
)

View solution in original post

2 REPLIES 2
singleton2787
Helper III
Helper III

perfect!! ty!

jdbuchanan71
Super User
Super User

Try it like this.

DoneDate =
IF (
    ISBLANK ( 'WorkItems Completed'[Custom_DateDeployed] ),
    'WorkItems Completed'[Custom_TargetDeploymentDate],
    'WorkItems Completed'[Custom_DateDeployed]
)

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors