Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Min Dates (mutiple Columns) Power Query - possible blank values

Hi,    Below i have a DAX function giving me the min. value of mutiple date values (columns). Does anyone know how to do this in PowerQuery?    SuccessDateToUse = VAR _remoteRental = IF(ISBLAN...
  • HotChilli's avatar
    HotChilli
    5 years ago

    A slight adjustment to AIB's formula should do it.  Sub in your column names (should all be Date type)

    Table.AddColumn(#"Changed Type", "Custom", each List.Min({[rSales] , [rRental] , [PRental] , [PSale]}))