JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,676
- Office Version
- 365
- Platform
- Windows
I did a search and came up with the solution below to perform calculations on a list of numbers in a single cell. Is there a better way?
Thanks
Mr Excel.xlsx | |||||
---|---|---|---|---|---|
B | C | D | |||
4 | Weights | Average | Count | ||
5 | 65 64 68 62 69 70 | 66.33 | 6 | ||
6 | 64 65 64 65 64 65 64 65 | 64.50 | 8 | ||
7 | 55 | 55.00 | 1 | ||
8 | 64 65 66 | 65.00 | 3 | ||
Cell Average |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C5:C8 | C5 | =AVERAGE(NUMBERVALUE(TEXTSPLIT([@Weights]," "))) |
D5:D8 | D5 | =COUNT(NUMBERVALUE(TEXTSPLIT([@Weights]," "))) |
Thanks