Google Support
support.google.com › docs › answer › 3093620
COUNT - Google Docs Editors Help
COUNT counts all numeric values in a dataset, including those which appear more than once.
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
Is 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, we want to tally what we gather virtually using google sheets. Is there a way of creating a count ticker that can be adjusted (+ or -) by ... 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
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() }
YouTube
youtube.com › watch
Google Sheets - Count Cells Containing Specific Text - YouTube
There are a few ways in Google Sheets to count cells with certain text. You can count the cells that contain only certain text, or you can count cells that c...
Published: December 2, 2017
Google Support
support.google.com › docs › answer › 3093480
COUNTIF - Google Docs Editors Help
Google Sheets · Use functions & formulas · COUNTIF · Returns a conditional count across a range. COUNTIF Function · For this same video with audio descriptions: COUNTIF Function · To get an example spreadsheet and follow along with the video, click “Make a Copy” below.
SimpleSheets
simplesheets.co › blog › how-to-count-cells-with-text-in-google-sheets
How to Count Cells with Text in Google Sheets: COUNTIF Guide
To count cells that literally contain a question mark, use =COUNTIF(A2:A10,"*~?*"). Without the tilde, the question mark is read as "any single character" and your count balloons. Wildcard matching is not case-sensitive. "*apple*" and "*APPLE*" return the same number. When wildcards are not expressive enough, Google Sheets gives you an option Excel does not have: regular expressions, through REGEXMATCH.
Google Support
support.google.com › docs › answer › 3256550
COUNTIFS - Google Docs Editors Help
COUNTIF: Returns a conditional count across a range.
Reddit
reddit.com › r/googlesheets › is it possible to add a count ticker that will count +/-
r/googlesheets on Reddit: Is it possible to add a count ticker that will count +/-
May 14, 2019 - I would honestly recommend using mechanical hand tally counter. They are like $10 each. You can get a daily count entered with google forms if you want it in sheets.