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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
l8b9plyodvynlk2
Contributor
Contributor

Finding the Records

Hi Team,

I have data 

Category Name
Men's Clothes
Women's Clothes
Sportswear
Swimwear

can you please how to resolve this issue 

I'm finding this record where [Category Name] = 'Sportswear'

but unable to finding this record.

where [Category Name] = 'Men's Clothes' 

Labels (1)
4 Replies
edwin
Master II
Master II

pls post your script

saranyadurai
Contributor III
Contributor III

Hi @l8b9plyodvynlk2 ,

 you  can try this,

where [Category Name] = 'Men''s Clothes' ;

Use single quotes twice in Men's

 

You can read more about this,

Escape sequences

 

 

Thanks

l8b9plyodvynlk2
Contributor
Contributor
Author

1. it is excuting 

Category:
LOAD [Category Name],
Description
FROM
[D:\QlikTutorials\Qlik classes videos\QWT Analysis.xlsx]
(ooxml, embedded labels, table is Category)
where [Category Name] = 'Sportswear';

2. it is not executing

Category:
LOAD [Category Name],
Description
FROM
[D:\QlikTutorials\Qlik classes videos\QWT Analysis.xlsx]
(ooxml, embedded labels, table is Category)
where [Category Name] = 'Men's Clothes';

l8b9plyodvynlk2
Contributor
Contributor
Author

Yes, Thanks a lot. its working. thanks for your valuable time😊.