I want to manipulate data that I get from an sql query then write it to a report all this done with VBA in MS Access.
So first i need to get the data I need with this sql query
SELECT test.number_id FROM test WHERE ((test.number_id)>30));
need to save the output in a variable let say
Dim testVar As Int
and make my calculations
then i need to display the result in the report.
Anyone know if thats possible and how to do this???