Google Support
support.google.com › docs › answer › 3093620
COUNT - Google Docs Editors Help
Although COUNT is specified as taking a maximum of 30 arguments, Google Sheets supports an arbitrary number of arguments for this function.
Best and Fairest Count Template - Google Docs Editors Community
Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on More on support.google.com
How To Make a Number Counter (+ and -) on Google Sheets
You cannot do this with a formula. But with apps script you can. I wrote a script for that. If you share a sample sheet with your exact layout and tabname i can help you out. More on reddit.com
How to count cells with any text in them.
Counta should do the trick
More on reddit.comIs it possible to add a count ticker that will count +/-
I'm creating a spreadsheet for my companies first beach clean-up. We want to collect as much granular data of the trash collected. To reduce waste… More on reddit.com
YouTube
youtube.com › watch
Master COUNT Functions in Google SHEETS: Simple Techniques to Count Values Effortlessly 📊 - YouTube
In this video, we return to the basics and explore how to effectively count values in Google Sheets. Learn about formulas and functionalities such as COUNT, ...
Published: May 14, 2025
Google Support
support.google.com › docs › thread › 79152102 › best-and-fairest-count-template
Best and Fairest Count Template - Google Docs Editors Community
Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on
Reddit
reddit.com › r/googlesheets › how to make a number counter (+ and -) on google sheets
r/googlesheets on Reddit: How To Make a Number Counter (+ and -) on Google Sheets
February 7, 2023 -
Hey!
I'm making myself an estimating template and wanted to make the material quantity column have a counter that has a + or - instead of deleting the number and retyping it. Has anyone done this or know of a way to do it? I also want to make the number usable for other formulas. Aka pulling the number into a graph so I can see my total material list. Not sure if this changes how the formula would be written or not.
Thanks!
Top answer 1 of 3
2
You cannot do this with a formula. But with apps script you can. I wrote a script for that. If you share a sample sheet with your exact layout and tabname i can help you out.
2 of 3
2
Done in the sheet, the code for reference: Extensions -> Apps script Paste in the code Change the sheetnames where you want this to happen [optional] change the 7 in range.getColumn() !== 7 to for example 1 if you want column A If you do 4 then you need to change the offset accordingly. function onEdit(e) { //Settings const sheetsToProcess = [ 'Products', 'SomeOtherSheet1', 'SomeOterhSheet2' ] //Rest of the code const source = e.source; const sheet = e.source.getActiveSheet(); const range = e.range; const value = Number(e.value); if (!value || isNaN(value)) return; if (!sheetsToProcess.includes(sheet.getName())) return; if (range.getColumn() !== 7) return; const row = range.getRow() if (row < 2) return; const currentValueRange = range.offset(0, -1) const currentValue = currentValueRange.getValue() if (isNaN(Number(currentValue))) { currentValueRange.setValue(value) } else { currentValueRange.setValue(currentValue + value) } range.clearContent() }
Google Support
support.google.com › docs › answer › 3093480
COUNTIF - Google Docs Editors Help
To use multiple criteria, use COUNTIFS or the database functions DCOUNT or DCOUNTA.