Forum Discussion
Ratcliffe2020
Mar 31, 2025Copper Contributor
HELP! I'm trying to calculate the value on a row and % under 50%
So for instance Multiple reps on a sheet (100) and how many Reps finished under 50% to Target for the month. 3 columns (Date, Rep name and % to target). I've tried:
=COUNTIF('SOW (New)'!B2:B836,"Joe Bloggs")+(COUNTIF('SOW (New)'!N2:N715,""<50%))
But this just counts the total % and seems to ignore <50%
Any Suggestions?
4 Replies
Sort By
- m_tarlerBronze Contributor
I agree with Hans in not understanding why you have "Joe Bloggs" as part of the COUNTIF. If you want total number of lines showing <50% then try:
=COUNTIF('SOW (New)'!N2:N715,"<"&50%)
What has Joe Bloggs to do with it?
- Ratcliffe2020Copper Contributor
Joe Bloggs is an example rep name... I have 10 Reps in total
But why do you have a COUNTIF for Joe Bloggs?