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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

need urgent reply

Hi ...I have  a list box(please find the below attachment) , that is having data like Out Of Warranty and Out of Warranty.., but those two are same only ,now i need to show only one Out Of Warranty in my qlikview report...how can get this, is it possible?

Regards,

Sh.

Labels (1)
2 Replies
jpapador
Partner - Specialist
Partner - Specialist

In the load script use a replace command.

Replace(Name Of Field, 'Out Of Warranty', 'Out of Warranty') as Name of Field

omyahamburg
Creator II
Creator II

Hi

Write in script

if(PPS_ES_Type='Out of Warranty','Out Of Warranty',PPS_ES_Type) as PPS_ES_Type;

or write

capitalize(PPS_ES_Type) as PPS_ES_Type;

regards

Joerg