Question : Error values in excel

Dear experts,

Need a formulae under column D which will do the follow
Check for all alpanumeric values in each row, which are neither 0 or error messages of excel product and return Yes if it has a result, else

Like for instance in column 6 even though zero is there it should give result of zero

Thank you
Attachments:
 
error value
 

Answer : Error values in excel

=IF(COUNTIF(A3:C3,">0")>0,"Yes","No")
Formula will count all cells where value is greater than 0

{=IF(SUM(IF(ISERROR(A3:C3), 0, A3:C3))>0, "Yes", "No")}
Formula will sum all cells which are not in error then check is sum is greater than 0

Both will do the job and you need to do some performance checks on bigger ranges to find out which performs faster
Random Solutions  
 
programming4us programming4us