ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Array (https://www.excelbanter.com/excel-programming/345320-array.html)

Adam[_12_]

Array
 
I want to pass an unknown number of dates and values to be processed by a
function. The data is like this:-

28/01/1956 12500
31/12/1980 45680
04/04/2002 1200000

What is the most effective way of doing it please?

Bob Phillips[_6_]

Array
 
You can use ParamArray, like so

Function func1(ParamArray inp())
Dim i As Long
For i = LBound(inp) To UBound(inp)
MsgBox inp(i)
Next i
End Function


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Adam" wrote in message
...
I want to pass an unknown number of dates and values to be processed by a
function. The data is like this:-

28/01/1956 12500
31/12/1980 45680
04/04/2002 1200000

What is the most effective way of doing it please?





All times are GMT +1. The time now is 05:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com