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: 
durgabhavani
Creator III
Creator III

help me in triming the values?

I need to remove the field value SYST: in the information field.

Information
SYST: ACCOUNTS
SYST: ACCOUNTS
SYST: ACCOUNTS
SYST: ACCOUNTS
SYST: ACCOUNTS
SYST: ACCOUNTS
SYST: FINANCE
SYST: FINANCE
SYST: FINANCE
SYST: FINANCE
SYST: FINANCE

help me in trimming.

11 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi Durga,

Simply use the Replace() like below in script

TableName:

Load

Replace(Information,'SYST:','') as Information

From DataSource;

Hope this helps you.

Regards,

Jagan.


durgabhavani
Creator III
Creator III
Author

Thanks for everyone!