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
Winner of T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Find out who won the T-Shirt Design Challenge and the top 3 finalists.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.