I want to update a column with a value of '1' based on the count of values in a column

I want to update a column with a value of '1' if the count of values in another column are greater than 1, it doesn't matter what those values are
Best Answer
-
Try this:
Formula in UpdateColumn
=IF(COUNT(Values:Values) > 1, 1)
Answers
-
@Clatts what did you try so far?
If my comment helps you, I appreciate a π‘
Kind regards
Nico | LinkedIn
CEO | Lighthouse Consultings
Lecturer in Business Information Systems | DHBW
________________________________________________________________________________
addvalue@lighthouseconsultings.com
We offer Licenses - Training - Solution Engineering
π΄ GOLD Smartsheet Partner _______________________________________________
π― SCALEABLE Solutions Engineered by Lighthouse Consultings
We Donβt Just Implement Smartsheet; We Revolutionize How You Manage, Plan, And Execute.
-
Try this:
Formula in UpdateColumn
=IF(COUNT(Values:Values) > 1, 1)
-
I actually worked it out after I posted this! The formula was:
=IF((COUNTM([Business Goal]@row) > 1), "1", "0")