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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Text search, match, and group

Example: Column 1 is my description and Column 2 is my grouping. How can I set a certain condition where it can differentiate what I'm grouping by from Column 1?

Column 1          Column 2       

1k                    k

1k                    k

1k                    k

2b                    b

2b                    b

2b                    b

2b,1k               bk

2b,1k               bk

2b,1k               bk

Any help would be appreciated.

1 Reply
swuehl
Champion III
Champion III

Maybe like

LOAD

   Column1,

   PurgeChar(Column1,'0123456789,') as Column2

FROM ...;