I have an Access 2010 database with a VBA module that does some statistical analysis on the data. The results of the statistical analysis cannot be generated by SQL, but they can be presented in tabular format. Right now, I can run the VBA function in the Immediate window and it will loop over the results and write them to the terminal using Debug.Print().

I'd like to have the results of this function available to the rest of Access so that I can create queries and reports from the table of results. So what I'm looking for is how to turn my function into a "dynamic table" -- a table that doesn't actually store data, but stores the VBA function that runs and fills in the table data dynamically whenever that table is used.

I've spent quite a bit of time looking at creating tables dynamically via MAKE TABLE queries or using DDL in VBA, but all of these examples use SQL to create the new table from existing records. I can't use SQL to generate the results, so I'm not really sure how to coerce the results into an object that Access will recognize. Part of the problem is that I'm just not familiar enough with Access VBA terminology to know what I should be looking for.

Thanks for the help.

link|improve this question
Does that mean you are unable to include your user-defined function in a query? It might help to show us the function's declaration, or the full function it it's not too long. – HansUp Jul 19 '11 at 17:17
The declaraction is just "Public Function GenerateSchedule" . It has three code blocks: the first pulls the data I need from the database using a query and processes the RecordSet into an array. The second block performs the statistical analysis on the array, and the third prints the results of the analysis to the terminal. I'd like to replace the third block with a block that provides the results as a table that is useable by the rest of Access. – Soren Jul 19 '11 at 17:48
feedback

4 Answers

I use following code if I don't want to use DDL and SQL Query...

Set dbs = CurrentDb        
Set tbl = dbs.CreateTableDef("tbl_Name")
Set fld = tbl.CreateField("Filed1", dbText, 255)
tbl.Fields.Append fld
Set fld = tbl.CreateField("Field2", dbText, 255)
tbl.Fields.Append fld
Set fld = tbl.CreateField("Field3", dbInteger)
tbl.Fields.Append fld
Set fld = tbl.CreateField("Field4", dbCurrency)
tbl.Fields.Append fld
dbs.TableDefs.Append tbl
dbs.TableDefs.Refresh

and if you want to add a record you could do

Dim dbs As DAO.Database
Dim rs As DAO.Recordset

Set dbs = CurrentDb
Set rstVideos = dbs.OpenRecordset("tbl_name")

rs.AddNew    
rs("field1").Value = "TEST "   
rs("field2").Value = "TEXT"   
rs("field3").Value = 1991
rs("field4").Value = 19.99

rstVideos.Update
link|improve this answer
The problem I see here is that I need to run this subroutine manually every time I want to update the table data. Is there a way to have this code run every time the table is read? Like an "OnRead" event for the table that can trigger a macro that calls my VBA function? – Soren Jul 19 '11 at 17:50
feedback

Your description ...

turn my function into a "dynamic table" -- a table that doesn't actually store data, but stores the VBA function that runs and fills in the table data dynamically whenever that table is used

... sounds like a query to me.

But since the function prints multiple "rows" and you can't make it work in a query, I would look at converting your Debug.Print statements to insert whatever values you're printing into a table. You can use an approach like the one @THEn described in the second part of his answer. I wouldn't bother re-creating the table each time you want to update the stored results, though. You can just empty out the table (with a DELETE statement) prior to storing the new set of values.

But ideally you would be able to convert the function to operate on one row at a time, and incorporate the revised function into a query ... the query would fully satisfy the requirements you're looking for from a "dynamic table". Sorry if that's not possible for your situation.

link|improve this answer
Yeah, it isn't possible in my situation because the "rows" don't actually exist. They're synthesized from data in the database. Your idea of creating a table that is emptied and re-filled by the VBA function sounds like a good workaround. I don't think it's possible to have the table re-populated automatically, but I've figured out how to wrap my VBA code in a macro, and manually running a macro is probably good enough for now--this project is only supposed to be a proof of concept anyway. – Soren Jul 19 '11 at 21:06
feedback

I am not sure why you need to put the retrieved data into an array. It seems and extra step. If you can generate the statistics from the array, the same thing should be possible in a query. create another query, using the results query as one recordsource and make your calculations accordingly for the fields that you want created. If we saw what you were trying to do, I think it could be made more simple.

link|improve this answer
feedback

This sounds like a disconnected recordset, or maybe "synthetic recordset," which is something ADO can do. I don't use ADO, so can't provide you with instruction, but maybe that will provide you with what you need.

Alternatively, depending on how you want to display it to the users, you might be able to do it native in Access. For instance, if presenting it on a form or report in a listbox is sufficient, then you could write a custom callback function and bind it to the listbox.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.