I run a sub during my opening sequence that populates a series of arrays. I've declared the arrays outside of the sub and made them public.
I've verified that the arrays are populating with data but when I try to access this data from other worksheets I get nothing but zeroes. What am I missing here?
HTML:
Public Day_Series_28(1 To 28, 1 To 1000) As Double
Public Day_Series_29(1 To 29, 1 To 1000) As Double
Public Day_Series_30(1 To 30, 1 To 1000) As Double
Public Day_Series_31(1 To 31, 1 To 1000) As Double
Sub Day_Sequence()
I've verified that the arrays are populating with data but when I try to access this data from other worksheets I get nothing but zeroes. What am I missing here?