Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
I am using this simple formula in a new field in Sheet Summary & I keep getting an "Unparseable" Error.
=COUNTIF(RESPONSIBLE ENTITY:RESPONSIBLE ENTITY, "FIRM")
You need square brackets [ ] around each of your column names.
[RESPONSIBLE ENTITY]:[RESPONSIBLE ENTITY]
Hi Donni,
When you have columns with numbers or multiple words you have to use Square Brackets.
Try this.
=COUNTIF([RESPONSIBLE ENTITY]:[RESPONSIBLE ENTITY], "FIRM")
Hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Thank you for explaining when the brackets are needed. I couldn't figure out when/why they were required. Much appreciated.
They are needed when you have a number, space, or special character in the column name. I am pretty sure that covers all of the reasons why you would need square brackets.
Happy to help!
I always forget about the special characters
I'm using the following formula but I keep on getting #UNPARSEABLE
=COUNTIFS({GP TRACKER INTAKE DATE} , IFERROR((@cell),0) > DATE(2019,6,30),({GP TRACKER STATUS}, IFERROR((@cell),0) = "FUTURE PROJECT"))
Try
=IFERROR(COUNTIFS({GP TRACKER INTAKE DATE} , > DATE(2019,6,30),{GP TRACKER STATUS},"FUTURE PROJECT"),0)
I'm assuming you want 0 if there is an error, based on your IFERROR((@cell),0)
@Javier Salar
To correct your original formula, it is just a matter of extra parenthesis being tucked in there.
=COUNTIFS({GP TRACKER INTAKE DATE}, IFERROR(@cell), 0) > DATE(2019, 6, 30) ,{GP TRACKER STATUS}, IFERROR(@cell), 0) = "FUTURE PROJECT")
I am trying to make a formula that looks in a column on Sheet A which is a drop down containing all values from a column on Sheet B, finds the match, and then looks in the row in Sheet B where the match is found to find an additional piece of information and pull that back into sheet A. I am thinking I need indexing and…
With card view going away, I've been experimenting with Board view. The board view lags between its cards which is very unproductive. Is there a fix that can be done so that cards in Board do not lag? Mike
I am in conditional formatting and cant seem to figure out how it should be set up. This is what I am looking for. I'd like a cell to turn red if it has been 365 days since the date that is listed in the cell. Any help is greatly appreciated!