Help on countif

JJPPP

New Member
Joined
Apr 6, 2017
Messages
6
Hello there-

I am trying to do a countif function on a series of data that isn't working properly. The data is organized in three columns:

$ HR$ Biz Dev$ MarketingTotalDays to Pay
2525100
505050
2525501003
606012020

Basically I want the count if to show me how many payments there are per column based on the days to pay. I tried doing a countifs based on the "Days to Pay" so formula would go something like "Count column A if the days to pay are 0-50, 51-100, etc." However, I keep getting #VALUE ! errors.

Any tips?

Thanks so much!!
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
something like 0-50 is a text entry, not a numeric, excel would not be able to compare that wit any real values.

Caving said that, I think you need to look at the COUNTIFs() function instead.

=countifs(A:A, ">0", E:E,">=0", E:E, "<=50")
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,008
Members
448,935
Latest member
ijat

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top