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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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