For simplicities sake I don't have my SQL in my VBA. I am just using public functions to filter pre-built queries when needed. I have a new need to change the value of the
So my question: Can you change the properties of a query in VBA?
I have tried this and similar methods:
Top Values property depending on the usage of the query.So my question: Can you change the properties of a query in VBA?
I have tried this and similar methods:
Code:
Set rst = db.OpenRecordset("queryName")
rst.Properties("Top Values") = strTopValues
Comment