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: 
Not applicable

In LOV Values showing double

Hi All,

I have exported one report from qlikview into excel - but when we filter the data on perticular field in LOV values are coming double.

please see the below example



   
 
 
 
 
 
 
 
 
 
 
 





lov.jpg

8 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi Santosh,

Check whether there are any spaces for the values, for example (Applicances) and (Appliances  ).  If there are spaces, then you can trim this by using Trim() in Qlikview dimension or in script.

Hope this helps you.

Regards,

Jagan.

Not applicable
Author

Dear Jagan,

Thanks for your reply. But there is no Space in Product Group.

This issue arise only when we export Report from Qlikview to Excel..

Can you please check & suggest.

Best Regards,

Santosh Shigwan

Häfele India Pvt. Ltd.

Office No. 3, Building “A” BETA, I - Think Techno Campus,

Off J.V.L.R, Opp Kanjurmarg Station, Kanjurmarg (E),

Mumbai 400 042, INDIA.

http://www.hafeleindia.com <http://www.hafeleindia.com/>

Customer Care Toll Free: 1800 266 6667 · Email ID: customercare@hafeleindia.com <mailto:customercare@hafeleindia.com>

Santosh Shigwan - Senior Executive - IT

Phone +91 22 6142 6100 · Fax +91 22 6702 0531 Extn 236

mailto:santosh.shigwan@hafeleindia.com <mailto:santosh.shigwan@hafeleindia.com>

CELAMBARASAN
Partner - Champion
Partner - Champion

Could you please attach sample excel file or Qlikview document?

Not applicable
Author

Hi,

Attached Please find the Sample file.

Best Regards,

Santosh Shigwan

Häfele India Pvt. Ltd.

Office No. 3, Building “A” BETA, I - Think Techno Campus,

Off J.V.L.R, Opp Kanjurmarg Station, Kanjurmarg (E),

Mumbai 400 042, INDIA.

http://www.hafeleindia.com <http://www.hafeleindia.com/>

Customer Care Toll Free: 1800 266 6667 · Email ID: customercare@hafeleindia.com <mailto:customercare@hafeleindia.com>

Santosh Shigwan - Senior Executive - IT

Phone +91 22 6142 6100 · Fax +91 22 6702 0531 Extn 236

mailto:santosh.shigwan@hafeleindia.com <mailto:santosh.shigwan@hafeleindia.com>

CELAMBARASAN
Partner - Champion
Partner - Champion

It looks like you split this string by using some function.

zero width space (Unicode 65279) is appended before the strings.

Not applicable
Author

Hi,

What need to do to solve this. Please suggest..

Best Regards,

Santosh Shigwan

Häfele India Pvt. Ltd.

Office No. 3, Building “A” BETA, I - Think Techno Campus,

Off J.V.L.R, Opp Kanjurmarg Station, Kanjurmarg (E),

Mumbai 400 042, INDIA.

http://www.hafeleindia.com <http://www.hafeleindia.com/>

Customer Care Toll Free: 1800 266 6667 · Email ID: customercare@hafeleindia.com <mailto:customercare@hafeleindia.com>

Santosh Shigwan - Senior Executive - IT

Phone +91 22 6142 6100 · Fax +91 22 6702 0531 Extn 236

mailto:santosh.shigwan@hafeleindia.com <mailto:santosh.shigwan@hafeleindia.com>

Not applicable
Author

Hi,

We have already used trim function in QVW - what further need to do?

Best Regards,

Santosh Shigwan

Häfele India Pvt. Ltd.

Office No. 3, Building “A” BETA, I - Think Techno Campus,

Off J.V.L.R, Opp Kanjurmarg Station, Kanjurmarg (E),

Mumbai 400 042, INDIA.

http://www.hafeleindia.com <http://www.hafeleindia.com/>

Customer Care Toll Free: 1800 266 6667 · Email ID: customercare@hafeleindia.com <mailto:customercare@hafeleindia.com>

Santosh Shigwan - Senior Executive - IT

Phone +91 22 6142 6100 · Fax +91 22 6702 0531 Extn 236

mailto:santosh.shigwan@hafeleindia.com <mailto:santosh.shigwan@hafeleindia.com>

From: Shigwan, Santosh

Sent: 15 October 2013 13:30

To: 'jive-1752202076-2qdm-2-8pct@qliktech-public.hosted.jivesoftware.com'

Subject: RE: - In LOV Values showing double

Hi,

What need to do to solve this. Please suggest..

Best Regards,

Santosh Shigwan

Häfele India Pvt. Ltd.

Office No. 3, Building “A” BETA, I - Think Techno Campus,

Off J.V.L.R, Opp Kanjurmarg Station, Kanjurmarg (E),

Mumbai 400 042, INDIA.

http://www.hafeleindia.com <http://www.hafeleindia.com/>

Customer Care Toll Free: 1800 266 6667 · Email ID: customercare@hafeleindia.com <mailto:customercare@hafeleindia.com>

Santosh Shigwan - Senior Executive - IT

Phone +91 22 6142 6100 · Fax +91 22 6702 0531 Extn 236

mailto:santosh.shigwan@hafeleindia.com <mailto:santosh.shigwan@hafeleindia.com>

CELAMBARASAN
Partner - Champion
Partner - Champion

Try something like

If(Ord(Trim(FieldName)) > 1, Right(Trim(FieldName), Len(Trim(FieldName)) - 1))

Or

KeepChar(FieldName , 'ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz')