percentages

Copper Contributor

i'm trying to count the number of percentage values in a range that are above or equal to a certain percentage 

1 Reply
If the percentage range is in Column A and the certain percentage is in B2, you can use COUNTIF, like this:
=COUNTIF(A:A,
“>=“&
B2)