View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave O Dave O is offline
external usenet poster
 
Posts: 427
Default Calculate an Excel column that contains numbers and #Values

One strategy is to change the formulas that are returning #VALUE to an
IF statement, maybe something like this:
=IF(ISERROR(your formula here),"",your formula here)

This evaluates the formula and returns nothing if the formula returns
an error, but returns the formula's result if it is not an error.