Sign in to join the conversation:
I am looking for a formula that does not count the duplicates so that it can count unchecked boxes. Does anyone know of one?
Hi,
Try this.
=COUNTIF(Checkboxes:Checkboxes; 0)
The same version but with the below changes for your and others convenience.
=COUNTIF(Checkboxes:Checkboxes, 0)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Hi Andrée, I'm working with the user above and what we were hoping to find was a formula to check a box if the user assigned was duplicated. For example, the second instance of my name should check the box, etc.
Hi Alison,This might give you a start:
Used for counting UNIQUE/DISTINCT values only by putting a 1 on first instance of a row value. Great for finding duplicates too. Example: If [Project Name] has 20 random rows of PlanA and 15 random rows of PlanB, you can put this formula in a helper column and when totaled, you'll get a value of 2. Important to keep the $ sign on the first row for when you auto fill down.
Ex: a form is used to collect surveys from people and some people are submitting more than once, if you want to count the unique people and not all the multiple surveys they submitted, use this formula.
IF(COUNTIF([Project Name]$1:[Project Name]@row, [Project Name]@row) <> 1, 0, 1)
Hope it helps!
Kara
Hi Alison,
Ok. I see that Kara answered. Did you get it working?
Andrée
Hello. I need to send a sheet to multiple different people and I want them to only be able to interact with their specific row. Is this possible? eg: 10 rows(person A, comment) I want Row 1 to go to person A and for them to only see their row and only comment in their specific section, Row 2 → person B, etc, etc. Any help…
I have a Resource Table with… Resource ID Name DailyRate ValidFrom R01 Resource X $1,500 3/8/25 R01 Resource X $2,000 9/1/25 R01 Resource X $2,200 9/31/25 I also have a Week by Resource Table with… WeekID ResourceID WCDate ValidRatePerWeek W01 R01 3/2/25 auto-pop $1,500 W02 to W26 R01 All the dates for W02 to W26 auto-pop…
I've got a sheet set up with multiple tasks assigned to different people. When printing the sheet the comments are all listed at the bottom of the sheet rather than under the relevant tasks. Is there a setting that allows the comments to be printed under each task ?