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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

creating a new field from the text of an existing field

Hi all,

if i have a field called NAME and the values for this field are

ADDAX1

ADDAX2

ADDAX3

BO1

BO2

BO3

BO4

TRF41

TRF44

how do i get just the text from this into a new field?

ie

ADDAX

BO

TRF

Thanks

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Temp:

Load PurgeChar(NAME,'0123456789') as NAME Inline

[

  NAME

  ADDAX1

  ADDAX2

  ADDAX3

  BO1

  BO2

  BO3

  BO4

  TRF41

  TRF44

];

NoConcatenate

Final:

Load Distinct NAME Resident Temp;

Drop Table Temp;

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Temp:

Load PurgeChar(NAME,'0123456789') as NAME Inline

[

  NAME

  ADDAX1

  ADDAX2

  ADDAX3

  BO1

  BO2

  BO3

  BO4

  TRF41

  TRF44

];

NoConcatenate

Final:

Load Distinct NAME Resident Temp;

Drop Table Temp;

munna1317
Creator II
Creator II

hi, use this function while loading

purgechar ( Name,'1234') as name

Regards,

harish