Hitung mean harmonik
=HARMEAN(number1, [number2], ...)
| Parameter | Deskripsi |
|---|---|
number1 |
First value or reference. |
number2 |
[optional] Second value or reference. |
The average of 1, 2, and 6 is 3. The harmonic mean of 1, 2, and 6 is 1.8:
=AVERAGE(1,2,6) // returns 3
=HARMEAN(1,2,6) // returns 1.8
In the example shown, the formulas in E5 and E6 are, respectively:
=AVERAGE(B5:B14)
=HARMEAN(B5:B14)