Forum Discussion

CLEARIFY's avatar
CLEARIFY
Icon for Helper I rankHelper I
4 years ago
Solved

Calculating 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 ...
  • Anonymous's avatar
    Anonymous
    4 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] )