Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
];
Have used the above concept and it's working as expected.
Thank you Vineeth for helping me fix this problem.