InterviewSolution
Saved Bookmarks
| 1. |
Write a formula to calculate the average of three number stored in cell A1,A2,A3 |
|
Answer» - Average = A1+A2+A3 3It is easy to calculate Average : ADD up all the numbers, then DIVIDE by how many numbers there are. In other WORDS it is the sum DIVIDED by the COUNT. I hope it helps you.... |
|