Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=COUNT(A1:A5)=5 In article , J.Alex. wrote: Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What do you want to do when you find them?
------------------------- Regards, Ron (XL2003, Win XP) Microsoft MVP (Excel) "J.Alex." wrote in message ... Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to display information if the range contains a number (any number). I
have several columns for different dates, and I want to check if customers (rows) have occurences on any of those dates. "Ron Coderre" wrote: What do you want to do when you find them? ------------------------- Regards, Ron (XL2003, Win XP) Microsoft MVP (Excel) "J.Alex." wrote in message ... Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
So....If you have Customers in Col_A and Dates in Row_1, beginning in B1...
What do you need to do? Highlight a specific customer if it has a number under a specific date? Highlight/count/sum customer that have a number under a specific date? Something different? -------------------------- Regards, Ron (XL2003, Win XP) Microsoft MVP (Excel) "J.Alex." wrote in message ... I want to display information if the range contains a number (any number). I have several columns for different dates, and I want to check if customers (rows) have occurences on any of those dates. "Ron Coderre" wrote: What do you want to do when you find them? ------------------------- Regards, Ron (XL2003, Win XP) Microsoft MVP (Excel) "J.Alex." wrote in message ... Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe
=IF(ROWS(A1:A10)=COUNT(A1:A10),TRUE,FALSE) Mike "J.Alex." wrote: Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For example, A1 thru A3:
1 '1 1 So of the three cells, two have true numbers and one has Text =SUMPRODUCT((A1:A3)*(ISNUMBER(A1:A3)=TRUE))=COUNTA (A1:A3) will return TRUE if ALL the data in the range are numbers or blanks. Otherwise FALSE. -- Gary''s Student - gsnu200745 "J.Alex." wrote: Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Lots of different ways to do it, I see.
Thanks for all the replies! "J.Alex." wrote: Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use =count(a1:a5) to see how many numbers are in that range.
=count(a1:a5)0 would return True if there was at least a single number in that range it would return false if there were numbers. =counta(a1:a5) would count the number of non-empty cells (including formulas that evaluate to "") in that range. J.Alex. wrote: Hi, Is there a way to check for numbers in a range of cells? Ie, to do a kind of ISNUMBER(A1:A5)? Thanks, -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|