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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
BishwaR
Helper V
Helper V

How to convert this DAX in power query

I have a measure as given below

New Date = IF (PO Date > Ship Date,PO Date,IF(Ship Date > PO Date,Ship Date),IF(PO Date = Ship Date,PO Date))))

 

Now I need to convert this DAX into power query.

 

Please Help

 

Thanks

Bishwa

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

new date=List.Max({[PO Date],[Ship Date]})

View solution in original post

5 REPLIES 5
arvindsingh802
Super User
Super User

@BishwaR  - Your Dax can also optimised 

 

New Date = IF (PO Date >= Ship Date,PO Date,Ship Date)

 

If this post helps, then please consider Accept it as the solution and give it a thumbs up


If this post helps, then please consider Accept it as the solution, Appreciate your Kudos!!
Proud to be a Super User!!

Awesome !! Thanks

wdx223_Daniel
Super User
Super User

new date=List.Max({[PO Date],[Ship Date]})

Thanks but how can I implement the if condition.

If PO Date is > Ship Date then PO Date

if Ship Date > PO Date then Ship Date

If PO Date = Ship Date then PO Date

 

Thanks

I figured it out Your solution just worked perfect Thanks again

Helpful resources

Announcements
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
Top Kudoed Authors