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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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!:
The Definitive Guide to Power Query (M)

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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors