Link to home
Start Free TrialLog in
Avatar of Maliki Hassani
Maliki HassaniFlag for United States of America

asked on

VBA to Oracle replace routine issue

Experts,

I have a Excel VBA code that uploads data into a oracle table.  I want to pass a variable so it can do a find and replace.  I am getting an error when I use strSQL = "DELETE FROM QA_DAC where (TICKET_ID = TICKET_ID_VAR)". If I were to replace the TICKET_ID_VAR with a actual ticket ID it works fine.

The error that I am getting is a runtime error "TICKET_ID_VAR" : invalid identifier

Any suggestions on why it isn't passing?  I see that it is capturing the variable when I debug.

Attached
Routine-code.txt
ASKER CERTIFIED SOLUTION
Avatar of mbizup
mbizup
Flag of Kazakhstan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Maliki Hassani

ASKER

Thank you!