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")
Hi there, I've created a sheet to where my team is tracking information received. In one column, we are logging the date and time information came in (ie: November 21, 2025 8:30 AM). I would like to add a checkbox column, with a formula specifying that the box be checked if the logged time is AFTER 8:30 AM, and left…
I have a column named Territory, where I am trying to write a formula to populate it when names are chosen from an adjacent drop-down list column called Employee Attendee. If more than one name is selected from the Employee column, I would like their respective territories to populate in the Territory field, separated by a…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…