Count tally

Maintain multiple named, signed counters with one shared positive increment step.

freeworks offlinenothing uploaded
ToolTally Counter

No counters yet. Add one above to start tallying.

How it works

Each in-memory record has an ID, label, and integer value; plus and minus apply the current step, reset affects one record, and removal filters one ID. Labels are inserted with textContent so entered markup remains text rather than executable HTML.

  • New counters begin at zero and the shared step begins at one to match ordinary tally marks.
  • Nothing is created or persisted automatically.

Worked example

Count arrivals in steps of five
Input
											Name: Arrivals
Start: 0
Step: 5
Presses: 3
										
Output
												Arrivals: 15
											

When to use this

Event staff count attendee groups, games track several scores, and manual inventory passes tally visible items.

Edge cases

  • Decrementing below zero is allowed for signed scores and corrections.
  • Changing the shared step affects future presses without rescaling existing totals.
  • Reloading loses the counter list because no local storage or account sync exists.