Hi all,
I am creating a text summary that pulls numbers from other columns. It's for the results of a ballot, so I want it to look like this:
2 approve, 4 reject, 5 abstain
And the formula looks like this:
=([Vote count: Approve]@row + " approve, " + [Vote count: Reject]@row + " reject, " + [Vote count: Abstain]@row + " abstain")
However, I want it to ignore the instructions if a value is blank, so that I don't end up with some scenarios like this if, say, 11 people approved, and there's no value entered for "reject" or "abstain."
11 approve, reject, abstain
In that case, I want it to just say "11 approve".
So, is there an elegant way to edit my formula to include text only if it's associated with a number?
Thanks in advance!