I've been programming in VBA in Excel for awhile, but am new to Access.
Is there a way to run a SQL Query and store the values into an array for further manipulation through VBA? (I don't really want the query output to the screen). Thanks!!
Query I'd like to run:
SELECT accrualofdaysLOG.id, accrualofdaysLOG.Type, accrualofdaysLOG.numberdays
FROM accrualofdaysLOG
WHERE (((accrualofdaysLOG.id)=1));
Is there a way to run a SQL Query and store the values into an array for further manipulation through VBA? (I don't really want the query output to the screen). Thanks!!
Query I'd like to run:
SELECT accrualofdaysLOG.id, accrualofdaysLOG.Type, accrualofdaysLOG.numberdays
FROM accrualofdaysLOG
WHERE (((accrualofdaysLOG.id)=1));