Forum Discussion
Anonymous
5 years agoNot applicable
Min value from other columns
Hi , I need to create a custom column, which gives the lowest value from other columns. Class Column_1 Column_2 Column_3 Required_Results A 1 1 6 1 B 2 5 2 C 2 1 5 1 ...
Anonymous
5 years agoNot applicable
Anonymous
You can use MIN function to get the lowest value from other columns while creating a new column-
Column = MIN('TableName'[ColumnName])
Appreciate your kudos !! Please mark my post as solution if this helps you.