Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have the following formula in a cell;
=COUNTIF(Info!L5:L499,"5<10") The criteria of the formula is to check for number between 5 & 10. How do this.? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try something like this:
If you are looking to count items between 5 and 10, exclusive of those numbers: =COUNTIF(Info!L5:L499,"<10")-COUNTIF(Info!L5:L499,"<=5") OR =SUMPRODUCT((Info!L5:L4995)*(Info!L5:L499<10)) If you want to include 5 and 10 in the count: =COUNTIF(Info!L5:L499,"<=10")-COUNTIF(Info!L5:L499,"<5") OR =SUMPRODUCT((Info!L5:L499=5)*(Info!L5:L499<=10)) Does that help? *********** Regards, Ron XL2002, WinXP "JohnD" wrote: I have the following formula in a cell; =COUNTIF(Info!L5:L499,"5<10") The criteria of the formula is to check for number between 5 & 10. How do this.? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT((Info!L5:L499=5)*(Info!L5:L499<=10))
HTH -- AP "JohnD" a écrit dans le message de news: ... I have the following formula in a cell; =COUNTIF(Info!L5:L499,"5<10") The criteria of the formula is to check for number between 5 & 10. How do this.? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Creating a Count formula | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula for If Term is on Certain Date then Count | Excel Worksheet Functions | |||
More Help Needed with Count formula | Excel Worksheet Functions | |||
Count numbers formed from another formula | Excel Discussion (Misc queries) |