Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi folks,
Is there a function that will treat a cell as blank, if the cell has a formula but the result is "" ? For example, someone is doing data entry in column A In column B there's a formula =IF(ISBLANK(A1),"",AVERAGE(A:A)) So column C would need to house a formula that checks if the result of the formula in column B is "". Obviously you can't put =IF(ISBLANK(B1)) because technically the cell isn't blank. I feel like there is a way to do this. What am I missing here? Thx, JP |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(A1="","",AVERAGE(A:A))
will work for blank text strings from formulas Note that AVERAGE itself ignores the blank text strings and empty cells -- Regards, Peo Sjoblom "JP" wrote in message s.com... Hi folks, Is there a function that will treat a cell as blank, if the cell has a formula but the result is "" ? For example, someone is doing data entry in column A In column B there's a formula =IF(ISBLANK(A1),"",AVERAGE(A:A)) So column C would need to house a formula that checks if the result of the formula in column B is "". Obviously you can't put =IF(ISBLANK(B1)) because technically the cell isn't blank. I feel like there is a way to do this. What am I missing here? Thx, JP |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(B1="","EMPTY","NOT EMPTY")
OR TYPE(B1) "JP" skrev: Hi folks, Is there a function that will treat a cell as blank, if the cell has a formula but the result is "" ? For example, someone is doing data entry in column A In column B there's a formula =IF(ISBLANK(A1),"",AVERAGE(A:A)) So column C would need to house a formula that checks if the result of the formula in column B is "". Obviously you can't put =IF(ISBLANK(B1)) because technically the cell isn't blank. I feel like there is a way to do this. What am I missing here? Thx, JP |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks guys!
On Oct 25, 1:12 pm, excelent wrote: =IF(B1="","EMPTY","NOT EMPTY") OR TYPE(B1) "JP" skrev: Hi folks, Is there a function that will treat a cell as blank, if the cell has a formula but the result is "" ? For example, someone is doing data entry in column A In column B there's a formula =IF(ISBLANK(A1),"",AVERAGE(A:A)) So column C would need to house a formula that checks if the result of the formula in column B is "". Obviously you can't put =IF(ISBLANK(B1)) because technically the cell isn't blank. I feel like there is a way to do this. What am I missing here? Thx, JP- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to get Blank into a cell as a result of a formula | Excel Worksheet Functions | |||
Force Excel To Treat A Cell As Blank | Excel Worksheet Functions | |||
Formula result as real empty/blank cell | Excel Worksheet Functions | |||
How to get a formula result zero as blank cell | Excel Discussion (Misc queries) | |||
Lookup formula - treat no-registered cells as blank | Excel Worksheet Functions |