C
curious
Hi all,
What is the proper way (best way) how to pass date vector fro
spreadsheet to a date vector inside VBA?
Ideally I would like to have something like this:
Code
-------------------
Public Function foo(inputVector() As Date)
Dim firstDate As Date
firstDate=inputVector(1)
...
End Function
-------------------
but this does not work.
Thanks
What is the proper way (best way) how to pass date vector fro
spreadsheet to a date vector inside VBA?
Ideally I would like to have something like this:
Code
-------------------
Public Function foo(inputVector() As Date)
Dim firstDate As Date
firstDate=inputVector(1)
...
End Function
-------------------
but this does not work.
Thanks