ZTEST function

Category: Compatibility
Introduced: Excel 365

Summary

Returns the one-tailed probability-value of a z-test

Syntax

ZTEST(array,x,[sigma]) The ZTEST function syntax has the following arguments:
• Array Required. The array or range of data against which to test x.
• X Required. The value to test.
• Sigma Optional. The population (known) standard deviation. If omitted, the sample standard deviation is used.

Example

=Z.TEST(A2:A11,4)
=2 * MIN(Z.TEST(A2:A11,4), 1 - Z.TEST(A2:A11,4))
=Z.TEST(A2:A11,6)
=2 * MIN(Z.TEST(A2:A11,6), 1 - Z.TEST(A2:A11,6))

Microsoft Support Page

https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee

Back to Functions