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: 
abc_18
Creator II
Creator II

Need to combine two values from a field to a single value in the same field

Hi,

I have a field say column with values as:

Column:

A

B

C

D

E

my requirement is to add two values together and make it as a single value in same column like below:

A

B+C as ' new name'

C+D as 'new name1'

E

please let me know how to achieve this.

Labels (1)
11 Replies
vinieme12
Champion III
Champion III

as below

 

Load * Inline [

Compliance,ComplianceGroup,ComplianceGroup_v2

Not approved to have XYZ,Not approved to have XYZ+Have latest version of XYZ,NonCompl for XYZ

Have latest version of XYZ,Not approved to have XYZ+Have latest version of XYZ,NonCompl for XYZ

Machine to have data,Machine to have data,Machine to have data

Machine to have data,Machine to have data+Have latest version of ABC,NonCompl for ABC

Have latest version of ABC,Machine to have data+Have latest version of ABC,NonCompl for ABC

Machine to have running,Machine to have running,Machine to have running

];

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
abc_18
Creator II
Creator II
Author

Have used the above concept and it's working as expected.

Thank you Vineeth for helping me fix this problem.