Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
i have two fields need to merge in one field
first_name|last_name
xyc,abc.
i need it like below
new output in tmap
name = first_name+last_name (separated by space)
name
xyc abc
This is pretty straight forward. Assuming your columns are attached to row1, your code would look like this....
row1.first_name + " " + row1.last_name
This is pretty straight forward. Assuming your columns are attached to row1, your code would look like this....
row1.first_name + " " + row1.last_name
Thanks @rhall .. it was very helpfull