Is there a way to add values to a multi-select column using a formula? I have several sheets that i want to switch from checkbox columns to a single multi-select column "Subscribed Calendars". It is VERY manual right now doing it by hand and will take a ton of time.
I've tried using the "IF" formula, but it only adds the first true value...which is "Specialty".
=IF(CIA104 = 1, "CIA", IF([Material Planning]104 = 1, "Material Planning", IF([Global Samples]104 = 1, "Global Samples", IF(Jordan104 = 1, "Jordan", IF([Global Merch Ops]104 = 1, "Global Merch Ops", IF([Geo Merch Ops]104 = 1, "Geo Merch Ops", IF([Sports Mktg]104 = 1, "Sports Mktg", IF(Specialty104 = 1, "Specialty", IF(GOLF104 = 1, "Golf", IF(SB104 = 1, "SB", IF(TENNIS104 = 1, "Tennis", "")))))))))))
So for the yellow highlighted cell below, I need it to put in the following values "Specialty", "Golf", "SB" and "Tennis" based on the checkbox columns.