I need to run a SQL query where -current_queue does not equal i01 and does not start with F -prod_code starts with R
SQL = "SELECT " & Join(theseFields, ",") & " FROM [Acct Detail$] WHERE NOT (current_queue='I01' OR LEFT(current_queue,1)='F')"
That works for me to remove i01 and queues starting with F but now how do I filter out prod_code that doesn't start with R?
(this is ADODB, VBA, Excel, Microsoft.Jet.OLEDB.4.0)
Nevermind, I decided to go with this:
Still curious how to keep prod_code starting with R but not current_queue of i01 or starting with F