Home |
Search |
Today's Posts |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I would go for your second option: Or replace (#n/a) with a zero? In excel 2007 use an "IfError" formula in the cells to sum like this: =IfError(A1/B1,0) Which will return a the result of A1/B1 or 0 if the formula return an error. In previous versions use this: =IF(ISERROR(A1/B1),0,A1/B1) Hopes this helps. .... Per |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel: match two cells in one sheet to two cells in another and return a third cells value | Excel Worksheet Functions | |||
compare 2 column cells and return the adjacent columns cells data of the cell | Excel Worksheet Functions | |||
Select Merged Cells and Unmerge Spread Merge Data To All Cells | Excel Programming | |||
display a range of cells editible cells based on matching date | Excel Worksheet Functions | |||
Skip cells with TAB/SHIFT+TAB but allow arrow keys/mouse selection of skipped cells | Excel Programming |