V Vince Nov 7, 2009 #1 How do I average a range of cells that are blank until data is entered later with out the destination cell returning a #div/o! error
How do I average a range of cells that are blank until data is entered later with out the destination cell returning a #div/o! error
F FSt1 Nov 7, 2009 #2 hi =IF(A2=0,"",AVERAGE(A2:A10)) or =IF(A2=0,0,AVERAGE(A2:A10)) adjust range to suit. Regards FSt1
T T. Valko Nov 7, 2009 #3 Try something like this... The formula won't calculate an average until at least 1 number is entered in the range. =IF(COUNT(A1:A10),AVERAGE(A1:A10),"")
Try something like this... The formula won't calculate an average until at least 1 number is entered in the range. =IF(COUNT(A1:A10),AVERAGE(A1:A10),"")
T T. Valko Nov 7, 2009 #4 mark -- Biff Microsoft Excel MVP T. Valko said: Try something like this... The formula won't calculate an average until at least 1 number is entered in the range. =IF(COUNT(A1:A10),AVERAGE(A1:A10),"") Click to expand...
mark -- Biff Microsoft Excel MVP T. Valko said: Try something like this... The formula won't calculate an average until at least 1 number is entered in the range. =IF(COUNT(A1:A10),AVERAGE(A1:A10),"") Click to expand...
F FSt1 Nov 8, 2009 #5 good call. i didn't think that out far enough. i assumed that the first cell in the range would be the first to have data. thanks for a better insight. regards FSt1
good call. i didn't think that out far enough. i assumed that the first cell in the range would be the first to have data. thanks for a better insight. regards FSt1