Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a function that will tell me is a cell is not blank, or in
other words, does contain a value? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=NOT(ISBLANK(A1))
Matt wrote: Is there a function that will tell me is a cell is not blank, or in other words, does contain a value? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For someone like me who needs to interpret the TRUE or FALSE that the
suggested formulas would return, I would use something like this: =IF(ISBLANK(A1),"Cell A1 is blank","Cell A1 is NOT blank"). Edit the last two arguments to suit your purpose/preference. "Dave Peterson" wrote: =NOT(ISBLANK(A1)) Matt wrote: Is there a function that will tell me is a cell is not blank, or in other words, does contain a value? -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe:
=NOT(ISBLANK(B3)) "Matt" wrote: Is there a function that will tell me is a cell is not blank, or in other words, does contain a value? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try something like this:
=IF(NOT(ISBLANK(A1)),"Value","No Value") There are many IS functions you can use to determine any number of values ISODD ISEVEN ISNUMBER Check Excel help for details regarding additional IS functions. -- Kevin Backmann "Matt" wrote: Is there a function that will tell me is a cell is not blank, or in other words, does contain a value? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |