Hi,
I am trying to dim a constant array with values and then use it later in the VBA code.
My current code (after many iterations of trial and error) is:
Code:
Dim document_type(1 To 6) As String
document_type = Array("PRF", "SRF", "SBF", "ASF", "NPR", "ASR")
I am using Option Explicit. I am using Excel 2010. Any help is greatly appreciated!