Kembalikan nilai terbesar.
=MAXA(value1, [value2], ...)
| Parameter | Deskripsi |
|---|---|
value1 |
Number, reference to numeric value, or range that contains numeric values. |
value2 |
[optional] Number, reference to numeric value, or range that contains numeric values. |
Like the MAX function, the MAXA function returns the largest number in the supplied data:
=MAX(12,17,25,11,23) // returns 25
=MAXA(12,17,25,11,23) // returns 25
MAXA can be used with constants, cell references, or ranges:
=MAXA(5,10)
=MAXA(A1,A2,A3)
=MAXA(A1:A10)
Note that MAX and MAXA both evaluate numbers as text when supplied directly as arguments:
=MAXA(5,"10") // returns 10
=MAX(5,"10") // also returns 10