Forum Discussion
CLEARIFY
Helper I
4 years agoCalculating a minimum value in a date table with criteria
I can get a minimum value from a connected FACT table as follows: = Record.Field(Table.Min(#"SALES VALUES","LinkToShipDateID"),"LinkToShipDateID") However, I would like to get the minimum value ...
- Anonymous4 years ago
Hi CLEARIFY , the following should get the minimum value after filtering the table.
#"Min Value" = List.Min( Table.SelectRows( #"SALES VALUES", each [LinkToShipDateID] > 0 )[LinkToShipDateID] )
Anonymous
4 years agoNot applicable
Hi CLEARIFY , the following should get the minimum value after filtering the table.
#"Min Value" = List.Min( Table.SelectRows( #"SALES VALUES", each [LinkToShipDateID] > 0 )[LinkToShipDateID] )