I have a number of tables like so:
Date | DataLabel1
------------------
0/0/0 | 15
0/0/1 | 12
The tables will be build dynamically and I want to combine them to make something like a spreadsheet or database table, with the index being the date. Then I would populate the data with a function like
Sub Add(date,datalabel,value)
'Find date row / add
'Find column
'Set Value
end sub
I have played with datatables in the past but found them to be cumbersome. Is there a better way?