I have declared my fixed array in a module.bas file
but when i try to run it i get an error "subscript out of
range"
run time error "9"
any ideas what im doing wrong???

Code:
Option Explicit
Public outSkillsData()
then tried using my array called outskillsdata
Code:
Dim noData As Boolean

noData = False
On Local Error Resume Next
If UBound(outSkillsData, 2) = 0 Then noData = True
On Local Error GoTo 0
help me what am i doing wrong?????