Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I make a cell blank when it has a certain phrase such as #DIV/0! or
N/A. I have a lot of these and it would be much better without them. I prefer a blank cell. Any ideas out there? -- |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
=IF(ISERROR(A2/A1),"",A2/A1) where you replace A2/A1 with your formula. Regards, Per On 14 Aug., 22:10, Doug wrote: How can I make a cell blank when it has a certain phrase such as #DIV/0! or N/A. *I have a lot of these and it would be much better without them. I prefer a blank cell. Any ideas out there? -- |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Either include an IF statement like
=IF(ISERROR(YourFunction),"",YourFunction) or =IF(ISNA(YourFunction),"",YourFunction) or, if you truly want to delete them, you can use F5 - Special - Formulas - Error, and then press delete (but I don't recommend this!) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Doug" wrote: How can I make a cell blank when it has a certain phrase such as #DIV/0! or N/A. I have a lot of these and it would be much better without them. I prefer a blank cell. Any ideas out there? -- |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Proper functions will clean that up for you...
check your denominator before dividing to eliminate Div by Zero =if(A1 = 0, 0, A2/A1) =if(countif(A1:A10, "MyValue") = 0, "Not found", vlookup("MyValue", A1:B10, 2,false)) clears up N/A errors. The one thing I would add is try to be specific in which error you are catching. You can use IsError but that cathces everything which is potentially dangerous. If a cell is deleted or such leading to a #ref error you do not want down stream formulas to ignore that error and return a value that is not valid. Better to show the error value than the wrong value. -- HTH... Jim Thomlinson "Doug" wrote: How can I make a cell blank when it has a certain phrase such as #DIV/0! or N/A. I have a lot of these and it would be much better without them. I prefer a blank cell. Any ideas out there? -- |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am getting the #DIV/0! based on some of the cells with N/A. Apparently it
views the N/A as a zero and gives #DIV/0! for the formula in those cells. Is there a VBA that I can enter into the sheet view code for this? If not where do I insert the formulas that you wrote? -- Thank you! "Jim Thomlinson" wrote: Proper functions will clean that up for you... check your denominator before dividing to eliminate Div by Zero =if(A1 = 0, 0, A2/A1) =if(countif(A1:A10, "MyValue") = 0, "Not found", vlookup("MyValue", A1:B10, 2,false)) clears up N/A errors. The one thing I would add is try to be specific in which error you are catching. You can use IsError but that cathces everything which is potentially dangerous. If a cell is deleted or such leading to a #ref error you do not want down stream formulas to ignore that error and return a value that is not valid. Better to show the error value than the wrong value. -- HTH... Jim Thomlinson "Doug" wrote: How can I make a cell blank when it has a certain phrase such as #DIV/0! or N/A. I have a lot of these and it would be much better without them. I prefer a blank cell. Any ideas out there? -- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text removal question | Excel Worksheet Functions | |||
Removal of text from a cell containing both text and numbers | Excel Discussion (Misc queries) | |||
Possible VB code to lookup and remove unwanted data | Excel Discussion (Misc queries) | |||
copy/paste excel to texteditor -> multi-line text cells gain unwanted double-quotes | Excel Discussion (Misc queries) | |||
How do I view cell text without it visually hiding other cells? | Excel Discussion (Misc queries) |