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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
dmohanty
Partner - Specialist
Partner - Specialist

Prefix the Field Values - But not hard code - HOW?

Hi All,

I have a Field, let say Column A, where I have a 1000 of values available. Now I need here to prefix all the values with a common name, lets say - 'TEST_'

Example

 

Original TableNew Table
Column AColumn A
abcTEST_abc
xyzTEST_xyz
cbaTEST_cba
zyxTEST_zyx

How can this be achieved?  Please suggest!

1 Solution

Accepted Solutions
marcus_sommer

Try:

New:

Load 'TEST_' & [Column A] as [New Column A] Resident OriginalTable;

- Marcus

View solution in original post

2 Replies
marcus_sommer

Try:

New:

Load 'TEST_' & [Column A] as [New Column A] Resident OriginalTable;

- Marcus

dmohanty
Partner - Specialist
Partner - Specialist
Author

Thanks very much Marcus. That helped!