I'm trying to create a column that only contains the minimum value of another column but keep running into an error. See below: Power Query Window :
Any idea as to what is going on. It seems like the formula should work. Do I have some kind of formatting issue going on?
Thank you

eachfunction). You'll need to refer to the previous step - e.g.List.Min(#"Changed Type"[Days Until Due])Table.AddColumn(#"Changed Type", "Minimum", each List.Min(#"Changed Type"[Days Until Due]))Although you'd probably be better off calculating that as a separate step and then just referring to it.