Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Where cause error issue at loading time

Where EmployeeName='D'souza';

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

The single quote in the name is causing the problem. Try adding an extra single quote to 'escape' it:

Where EmployeeName='D''souza';

Another thing you can try is using a variable:

SET vEmployeeName = D'souza;

Load Stuff From SomeTable Where EmployeeName = '$(vEmployeeName)';


talk is cheap, supply exceeds demand