Hello all. I'm brand new so please excuse any errors. I'm using 2007 for Windows. I have a range of cells containing measurements that I want to take the AVERAGE(...) difference of. However, I miss measurements sometimes, so some of those cells are actual verified measurements that I took, and some are AVERAGE(...)s of the cells to the left and right of them [for completeness' sake and to make my graphs pretty]. For instance:
Makes sense, right? Well, I would like to get an overall AVERAGE(...) for the difference of all my measurements, but only the truly calculated ones. So I want to exclude the cells which contain a formula (or rather, in this case, which are derived from cells with a formula).
Is this possible? I'm willing to go the VBA route, but would prefer not to (only because my macro-enabled workbooks always seem to crash or do funny stuff).
Thank you very much for your help.
A | B | C | D | E | F | |
1 | Measurement 1 | 181.2 | 182.1 | 182.2 | 182 | 182.5 |
2 | Measurement 2 | 183 | 184 | =AVERAGE(C2,E2) | 183.8 | 184.2 |
3 | Difference: | 1.8 | 1.9 | 1.7 | 1.8 | 1.7 |
4 | Average Difference: | 1.78 | ||||
5 | (True Average, Excluding Formulas): | 1.8 |
Makes sense, right? Well, I would like to get an overall AVERAGE(...) for the difference of all my measurements, but only the truly calculated ones. So I want to exclude the cells which contain a formula (or rather, in this case, which are derived from cells with a formula).
Is this possible? I'm willing to go the VBA route, but would prefer not to (only because my macro-enabled workbooks always seem to crash or do funny stuff).
Thank you very much for your help.