Forum Discussion
sterndavies
Mar 18, 2021Copper Contributor
COUNTIF Not Working
If anyone could help me i'd appreciate it so much. For whatever reason, this formula is not picking up the "number" formatted numbers in the column with this spreadsheet. The formula is suppose to tell how many have the "1" and "2" value in the column. However, it's showing 0 for both but there should be values being picked up.
Thank you!
Sandra_Flanagan What version of SharePoint Server is deployed? Site admins have access to some statistics out of the box but there may be differences between the versions, so knowing that is a good start to investigate what options you have available. Aside from SharePoint's analytics from the system side - you could use 3rd party tracking as well if your company is already using something on external sites. Most of those products have the ability to carve of reporting for different sites and can provide permissions to view and analyze to non-system admins.
5 Replies
Sort By
- tauqeeracmaSteel Contributor
Hi
All of the data in column B has decimal places wheras you are comparing rounded numbers that is why no data is being picked up.
You may use '>' or '<' sign as per your requirement. for example
=COUNTIF(B2:B65,">=2")
Thanks
Tauqeer
- sterndaviesCopper ContributorHello
If i do >= this will count everything higher than 2 as well which is not what i am looking for. I am looking for a function that will count everything that is =2 or =1 only if that makes sense.
is there a way to do countif >= .5 and <=1.49 as one formula? Since the rounded numbers aren't being picked up?- tauqeeracmaSteel Contributor
Instead of countif() you may use countifs() function that allows to give multiple creteria as mentions below:
=COUNTIFS(D6:D15,">.5",D6:D15,"<1.49")
Thanks