![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Location: Frankfurt
Posts: 4
|
I have been trying to work this problem out all day, and I am sure it must be something simple that I am missing.
I want to count the number of times a cell's value is over an average. This works : =Countif('Stock Data'!F5:F24;">0,96") but if I change it to use the cell variable, eg: =Countif('Stock Data'!F5:F24;">E17) It doesn't. If any one can help I will be really grateful ! |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Location: Georgia USA
Posts: 544
|
Try =COUNTIF('stock Data'!F5:F24,">"&E17)
|
|
|
|
|
|
#3 |
|
New Member
Join Date: Apr 2002
Location: Frankfurt
Posts: 4
|
Thanks Paul B, it worked !
|
|
|
|
|
|
#4 |
|
Board Regular
Join Date: Mar 2002
Location: Brampton
Posts: 324
|
Sometimes the SUMIF form for COUNTIF works handy as an array formula. In your case:
{=SUM(IF('stock Data'!F5:F24>E17,1,0))} |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|