Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi, trying to fix a conditional format to if not empty, but not a number. is
there a way to test for that? along lines of: =IF(AND(A1<"",A1<number),.. thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You probably want something like:
.... NOT(ISNUMBER(A1)) ... Hope this helps. Pete On Jul 14, 1:32 am, nastech wrote: hi, trying to fix a conditional format to if not empty, but not a number. is there a way to test for that? along lines of: =IF(AND(A1<"",A1<number),.. thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(AND(A1<"",A1<number),..
For CF, this might suffice: =AND(A1<"",ISTEXT(A1)) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "nastech" wrote: hi, trying to fix a conditional format to if not empty, but not a number. is there a way to test for that? along lines of: =IF(AND(A1<"",A1<number),.. thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Including a range of number in a IF (Logical Test) formula | Excel Worksheet Functions | |||
TEST FOR EXACT TEXT | Excel Worksheet Functions | |||
removing dashes changes test into number | Excel Discussion (Misc queries) | |||
"formula is too long" AND test for whether double-quotes are next-to text or number?? | Excel Discussion (Misc queries) | |||
How do I test for a prime number? | Excel Worksheet Functions |