Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
I have an fx: =“Task - “ + COUNT(children())
How do I append 'text' to this formula?
If I just append "text", I get "#Opererator Expected"
Ah, nevermind I just found it, place a ' + ' between the end of the formula and the quoted text:
=“Task - “ + COUNT(children()) + " tasks"
Looks like you figured it out! When concatenating any values, functions, or text, use the + in between each item.