Add up totals in Excel?
Good day,
I have a problem with my Excel.
I have a list of grades 1-6 from over 4000 students.
I would now like to create a formula that tells me how many students got a grade lower than 3.
Maybe the answer is easy, but I'm a bit of a clever person, it would be cool if you could help me.
I need a formula because I want to calculate this every month.
Mega thanks in advance
This can be done, for example, with the function =counting if
A2 stands the note
B2 is the formula
=if(A2>3,1)
Below in column C
=Number(B2:B4002)
The column B can then be hidden.
My idea
=Callif(Cell1:CellN;”>=3″)
And to this: =Number(Cell1:CellN)
Both divided by each other gives you the share of bad students.
Hello, that’s almost exactly what I mean. Can I refer to a cell ?
Sure, but it is also about determining a number directly. Of course, this can also be done in columns and there is a yes/no or respectively with a if function. Create 0/1 value and then add up.
Because counting a cell can only get 0 or 1.
In relation to a cell, =If(A1>3;1;0) as a result would be equal to =Celif(A1;”>3″)