• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

counting data in excel...

There's gotta be a way to do this... Say I have a column of data, values are either 1,2, or 3. I want to count the number of instances of each number. How could I manipulate count() to do this, or is there some other way to go about this?

Thanks
 
=countif(range, criteria)

ie:
A1-A3 = 1
A4-A7 = 2
A8-A9 = 3

A11-=COUNTIF(A1:A9,1) would yield 3
A12-=COUNTIF(A1:A9,2) would yield 4
A13-=COUNTIF(A1:A9,3) would yield 2

That what you wanted?
 
Back
Top