Greetings,
I have two columns, one to indicate Project Progress, and one to display the progress as a symbol. I want to create a formula to connect the Project Progress dropdown options with each of the Harvey ball symbols and came up with the formula below. Each individual formula works, but when combining the formulas, it shows an #UNPARSABLE
=IF([Project Progress]@row= "0-25% - Not Started/very little progress", "Empty")
=IF([Project Progress]@row= "25-50% - Some progress made", "Quarter")
=IF([Project Progress]@row= "51-75% - Significant progress made", "Half")
=IF([Project Progress]@row= "0-25% - 76-99% - Nearly complete/submitted to communications", "Three Quarter")
=IF([Project Progress]@row= "100% - Published", "Full")
The combined formula is:
=IF([Project Progress]@row= "0-25% - Not Started/very little progress", "Empty"), IF([Project Progress]@row= "25-50% - Some progress made", "Quarter"), IF([Project Progress]@row= "51-75% - Significant progress made", "Half"), IF([Project Progress]@row= "0-25% - 76-99% - Nearly complete/submitted to communications", "Three Quarter"), IF([Project Progress]@row= "100% - Published", "Full")