Forum Discussion
Anonymous
2 years agoNot applicable
Power Query - Add Column which is global minimum of another column
Hi, I have the the following data : response_timestamp id status infos 26/10/2023 4:30 PM 1 active ... 26/10/2023 4:31 PM 2 inactive ... 26/10/2023 4:33 PM 3 active ... ...
- 2 years ago
Hi Anonymous
= Table.AddColumn(#"PreviousStepName", "Min_response_timestamp", each List.Min(Table[response_timestamp]))
mlsx4
2 years agoMemorable Member
Hi Anonymous
= Table.AddColumn(#"PreviousStepName", "Min_response_timestamp", each List.Min(Table[response_timestamp]))