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: 
janardhan
Creator
Creator

filtering

Hi Friends ,

I have data like below table , in that ItemName field having the text with ; (Semicolon) , i need to filter , i need that value without Semicolon

ItemNum
ItemName
Qty
1101105.11.12 - 05.11.12 - 6404 - abcdefg  - Ondferære timer23
1102204.11.12 - 04.11.12 - 7004 - abcdefg  - Ondferære timer30
1103305.11.12 - 05.11.12 - 9004 - Statiost vakhold extra   - Timer na230

Thanks in Advance

Janardhan

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

purgechar(ItemName,';') will remove the semicolon. Is that all you need or do you need only the last part of ItemName after the last hypen? purgechar(trim(Subfield(ItemName,'-',-1)),';')


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

purgechar(ItemName,';') will remove the semicolon. Is that all you need or do you need only the last part of ItemName after the last hypen? purgechar(trim(Subfield(ItemName,'-',-1)),';')


talk is cheap, supply exceeds demand
janardhan
Creator
Creator
Author

Hi Wassenaar ,

purgechar(ItemName,';') this function works fine.

Thanks a lot