'Declare variables for cell values attained from APR spreadsheet
Dim orgSheetvalues(0) As String 'Project Title
Dim orgSheetvalues(1) As String 'Circuit Tag
Dim orgSheetvalues(2) As String 'District
Dim orgSheetvalues(3) As String 'State
Dim orgSheetvalues(4) As Date 'Date recieved
Dim orgSheetvalues(5) As Currency 'Planned Capital Cost
Dim orgSheetvalues(6) As Currency 'Actual Capital Cost
Dim orgSheetvalues(7) As Date 'Capital work completed date
Dim orgSheetvalues(8) As Currency 'Planned O&M Cost
Dim orgSheetvalues(9) As Currency 'Actual O&M Cost
Dim orgSheetvalues(10) As Date 'O&M work completed date
Dim orgSheetvalues(11) As String 'RWP File Path
Clearly, this does not work. Does anyone know of a way I can use the same variable name, for different variable types, in a way that can be iterated as the above would if it worked (eg. orgSheetvalue(iterating variable))?