A family of Microsoft relational database management systems designed for ease of use.
I need to update quantities "in stock" in a warehouse table when new orders are addes, modified or deleted.
Well, the first problem here is that you have a design flaw in your database. Stock on Hand should NOT be stored, but calculated. It is calculated in a query that adds and subtracts the quantities of your transactions.
So you should not be using a Data macro to do this.
Second, Is this a web app? Data macros are not as flexible as VBA. But without understanding your structure and seeing the macro its hard to advise.