Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to check cells F11 to F24 and F42 to see if any are blank, and if so
return answer X and if not answer Y. This is what I got so far =IF(COUNTBLANK(F11:F24)=1,"X","Y") but it only checks cells F11:F24. I cannot not figure out how to check for F42. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(OR((F11=""),(F24=""),(F42="")),"Y","X")
-- Gary''s Student - gsnu200733 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You will need to reverse the position of x and y in my previous post.
-- Gary''s Student - gsnu200733 "Scott" wrote: I need to check cells F11 to F24 and F42 to see if any are blank, and if so return answer X and if not answer Y. This is what I got so far =IF(COUNTBLANK(F11:F24)=1,"X","Y") but it only checks cells F11:F24. I cannot not figure out how to check for F42. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Regarding (F11=""),(F24="") ..... will this work for the range of cells
between F11 and F24, or just F11 and F24? I need it to check the range F11 to F24. Scott "Gary''s Student" wrote: =IF(OR((F11=""),(F24=""),(F42="")),"Y","X") -- Gary''s Student - gsnu200733 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
testing range of cells for part of cell content | Excel Worksheet Functions | |||
Testing if a cell is within a range | Excel Programming | |||
Testing Range from other Sheets | Excel Programming | |||
Cell in Range Testing Function | Excel Programming |