Forum Discussion
Anonymous
5 years agoNot applicable
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...
- 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]}))
Anonymous
5 years agoNot applicable
Hi AlB ,
When i do this i get the following error
--> I think because for some values are "null"
Expression.Error: We cannot convert Type to List type.
Details:
Value=[Type]
Type=[Type]
HotChilli
5 years agoCommunity Champion
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]}))