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: 
paulyeo11
Master
Master

Script not working for Recoding Software into Soft

Hi All

I did a partial reload using the below script , but it does not work.

left join    (GE)

   

Load PART_NO_,

    if (PRODUCT_TYPE='SOFTWARE','SOFT', 

    ) as [PRODUCT_CLASS],

Can some one advise where i go wrong ?

Paul

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Remove , after SOFT 'SOFT',

   if (PRODUCT_TYPE='SOFTWARE','SOFT'

    ) as [PRODUCT_CLASS],

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Remove , after SOFT 'SOFT',

   if (PRODUCT_TYPE='SOFTWARE','SOFT'

    ) as [PRODUCT_CLASS],

paulyeo11
Master
Master
Author

Hi Sir

it work now , as i spell Software as SOFTWARE . now it work.

Thank you

Paul