Using Option Explicit & Format

I am using the Format command with the GroupDigits option, but Option Explicit is seeing GroupDigits as an undefined variable.
Ex.
Option Explicit
Dim intBigNumber
Dim strBigNumber
intBigNumber = 1000000
strBigNumber = Format(intBigNumber,GroupDigits)

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions