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 need a column formula that can add sequential, unique IDs to data like this coming in from a form: Task Type Task ID Manual M001 Automated Manual M002 Manual M003 Manual M004 Automated Manual M005 Task IDs that aren’t the manual type need sequential numbering within their type (i.e. A001, A002, etc). Here’s the kicker:…
I'm trying to display a sum of the column Total Funds Available when Status = Apps Open, and Value Score = 5. Here is the formula I have: =SUMIFS([Total Funds Available]:[Total Funds Available], Status:Status, ="Apps Open", [Value Score]:[Value Score], ="5") There are rows that meet these conditions and should display a…
Hi everyone. We have an upcoming project is very short, but very critical, and requires that we track not only the start and end dates, but also the start and end times. Currently our team has added two columns, start time & end time, and they would like to add a duration column that can track the planned duration in…