tranchemontaigne
Registered User.
- Local time
- Today, 04:40
- Joined
- Aug 12, 2008
- Messages
- 203
I have a code block that fails to compile when a multi-dimentional array is defined.
This sample code compiles without error
but the code below fails at the comma within every "), "
Where am I going wrong?
Ford Thames 300E History
This sample code compiles without error
'labels = Array( _
Array( _
Array("a", "b"), _
Array("aa", "bb") _
), _
Array( _
Array("c"), _
Array("ca", "cb", "cc", "cd") _
) _
)
but the code below fails at the comma within every "), "
Where am I going wrong?
________'labels = Array( _
Array( _
Array("SAU", "Name", "Week Ending"), "MMWR Week No."), _
Array("") _
), _
Array( _
Array("Student", "Staff", "Combined", "Student ILI", "Staff ILI", "Comb. ILI"), _
Array("# Abs", "% Abs") _
), _
Array( _
Array("ILI / Total Abs"), _
Array("Std", "Staff", "Comb.") _
), _
Array( _
Array("Nurse Visits"), _
Array("Total", "% Std"), _
), _
Array( _
Array("ILI Nurse Visits"), _
Array("Total", "% Tot", "% ILI") _
) _
)
Ford Thames 300E History
Last edited: