-
Hi, I'm trying to do a basic counting cell. I want to know how many of a column's values are above another value, but set in another cell. For context, I have a spreadsheet of my student's marks, but not all exams are on the same total of points. I added a row "Max points" in the 45th row of each column, and I want to know, for each column, how many values are above half of the max points. I tried I searched how the {expr} works in the help and in discussions and issue on this Github, but didn't find an answer. I could make another row named "Half points" and use that, but I'm sure there's an easy answer :-). Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Solution: use |
Beta Was this translation helpful? Give feedback.
Solution: use
@nval("E", 45")
instead ofE45
:@count(E$1:E$44,E0>=@nval("E", 45)/2)
.