M mackyrm Registered User. Local time Today, 11:06 Joined Oct 5, 2006 Messages 57 Jul 19, 2016 #1 Can you query on a query in VBA and filter in the VBA for a cleaned up output? If anyone can advise with a VBA-SQL example, appreciated. Thanks.
Can you query on a query in VBA and filter in the VBA for a cleaned up output? If anyone can advise with a VBA-SQL example, appreciated. Thanks.
Minty AWF VIP Local time Today, 19:06 Joined Jul 26, 2013 Messages 10,558 Jul 19, 2016 #2 Yes you can. sSql = "SELECT * FROM qryYourQUery " sSql = sSql & " WHERE add your criteria in here"
M mackyrm Registered User. Local time Today, 11:06 Joined Oct 5, 2006 Messages 57 Jul 19, 2016 #3 Thanks Minty, I will give this try.