Forum Discussion
BishwaR
Helper V
5 years agoHow 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
new date=List.Max({[PO Date],[Ship Date]})
5 Replies
- arvindsingh802
Community Champion
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
- BishwaR
Helper V
Awesome !! Thanks
- wdx223_Daniel
Community Champion
new date=List.Max({[PO Date],[Ship Date]})