G Guest Nov 24, 2005 #1 I am using DAVERAGE function and teh resulkt is #DIV/0!. How to change this display in a cell to blank or "-"?
I am using DAVERAGE function and teh resulkt is #DIV/0!. How to change this display in a cell to blank or "-"?
B Biff Nov 24, 2005 #2 Hi! An AVERAGE(IF(........................) array formula would probably be easier! Try this: =IF(ISERROR(your_formula)),"",your_formula) That will return a blank. If you want the dash: =IF(ISERROR(your_formula)),"-",your_formula) Biff
Hi! An AVERAGE(IF(........................) array formula would probably be easier! Try this: =IF(ISERROR(your_formula)),"",your_formula) That will return a blank. If you want the dash: =IF(ISERROR(your_formula)),"-",your_formula) Biff