Hello community,
I am attempting to return single or multiple values depending on a multiple dropdown column.
My dropdown column contains criteria "Consolidation", "Reduction", "Termination", "New"
Currently the formula works for single values with the following formula
=IF([Type of Project]@row = "Consolidation", "🝢", IF([Type of Project]@row = "Reduction", "︾", IF([Type of Project]@row = "New", "○", IF([Type of Project]@row = "Termination", "⨷"))))
I would like my formula to be able to return two/three/four of the values. For example if the "[Type of Project] cell had multiple criteria e.g. "Consolidation Reduction" I want my formula to return "🝢 ︾"
Many thanks in advance.