We are currently evaluation Smartsheets (and others) for our team. Smartsheets feels very intuitive. The one thing I like are the symbols for completion e.g. the bar or the pie symbol, but then I'm struggling to use those in formulas.
E.g. I use the bar symbol but now want to get to the overall progress for a parent task. They way I got it to work was converting the symbol into a percentage in an extra column, then summing those percentages up, then turning the sum back into a bar, takes 3 steps and seems overly complicated:
Percentage=IF(Progress@row = "Quarter", 0.25, 0) + IF(Progress@row = "Half", 0.5, 0) + IF(Progress@row = "Three Quarter", 0.75, 0) + IF(Progress@row = "Full", 1, 0)
then avergage percentage numbers
Average Progress bar then is
Progress=IF(Percentage@row = 0, "Empty", IF(Percentage@row < 0.5, "Quarter", IF(Percentage@row < 0.75, "Half", IF(Percentage@row < 1, "Three Quarter", "Full"))))
I feel those symbols will be used quite often. Is there a simpler (build in) way for conversion? If not, can I build my own functions? Else I'd probably need to make an excel sheet with all commonly used symbol2value and value2symbol conversions and copy paste manually which seems quite unnecessary.