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

If null, then use other columns values (Easy IF statement maybe?)

Hi All,

 

I have a table like so...

 

Order DateDate Secured
11/11/2022null
12/11/2022null
null14/11/2022
null15/11/2022
13/11/2022null

 

I would like this result....

 

Order DateDate SecuredClose Date
11/11/2022null11/11/2022
12/11/2022null12/11/2022
null14/11/202214/11/2022
null15/11/202215/11/2022
13/11/2022null13/11/2022

 

Many Thanks all I will accept your solution if correct tomorow morning!

 

Taylor

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Ttaylor9870 So if it is really "null" as in the word "null" it would be:

Close Date Column = IF([Order Date] = "null",[Date Secured],[Order Date])

if the "null" in your data represents a "blank" the it is:

Close Date Column = IF([Order Date] = BLANK(),[Date Secured],[Order Date])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@Ttaylor9870 So if it is really "null" as in the word "null" it would be:

Close Date Column = IF([Order Date] = "null",[Date Secured],[Order Date])

if the "null" in your data represents a "blank" the it is:

Close Date Column = IF([Order Date] = BLANK(),[Date Secured],[Order Date])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Happy days that's perfect thank you very much!

Helpful resources

Announcements
Exciting changes

Power BI Community Changes

Check out the changes to the Power BI Community announced at Build.

May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Kudo Data Story carousel

Data Stories Gallery

Visit our Data Stories Gallery and give kudos to your favorite Data Stories.

Top Solution Authors