Is there a simple way to change the code so I can see all the p-values? The field work we due it is acceptable to use p-value of 0.1 instead of the standard 0.05.
If I were to change the following code in the cls1WayANOVA
Option Explicit
Private Const mAlphaLevel = 0.05
to
Option Explicit
Private Const mAlphaLevel = 0.1
would that accomplish my goal?