Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do you do that in an if statement? If cell is not blank. Thank you.
-- David P. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way to test it: =IF(A1<"", ...
-- Max Singapore http://savefile.com/projects/236895 Downloads:20,500 Files:365 Subscribers:65 xdemechanik --- "David P." wrote: How do you do that in an if statement? If cell is not blank. Thank you. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=if(a1="","it's blank","it's not blank")
or =if(a1<"","it's not blank","it's blank") (Excellent name!) David P. wrote: How do you do that in an if statement? If cell is not blank. Thank you. -- David P. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Another way to test is =IF(ISBLANK(A1),true,false) another way =IF(COUNTBLANK(A1),"blank","notblank") technically you could also use =IF(COUNTA(A1),"notblank","blank") -- If this helps, please click the Yes button Cheers, Shane Devenshire "David P." wrote: How do you do that in an if statement? If cell is not blank. Thank you. -- David P. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the cell is *empty* (which can be considered to be different than blank),
then all 3 of those of those formulas return what you'd expect. However, if the cell contains a formula blank ("") then the results are different in 2 out of 3 of the formulas. You can reduce this: =IF(ISBLANK(A1),TRUE,FALSE) To: =ISBLANK(A1) -- Biff Microsoft Excel MVP "Shane Devenshire" wrote in message ... Hi, Another way to test is =IF(ISBLANK(A1),true,false) another way =IF(COUNTBLANK(A1),"blank","notblank") technically you could also use =IF(COUNTA(A1),"notblank","blank") -- If this helps, please click the Yes button Cheers, Shane Devenshire "David P." wrote: How do you do that in an if statement? If cell is not blank. Thank you. -- David P. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
returning blank when reference cell is blank | Excel Worksheet Functions | |||
Average Formula to display blank cell if named range is blank | Excel Worksheet Functions | |||
how to get excel to display blank if reference cell blank | Excel Worksheet Functions | |||
How do I make a blank cell with a date format blank? | Excel Worksheet Functions | |||
COPY A CONCATENATE CELL TO BLANK CELL PUTTING IN THE NEXT BLANK C. | Excel Discussion (Misc queries) |