Hi There
I am trying to combine the value of 2 Columns in a Table called "Temp".
Specifically the Table is 12 Columns Wide, and in Column 11 ("Desc"), I want to CONCATENATE the value of Column 12 ("Chq No") and the value of Column 7 ("Desc")
The code I have currently is:
Code
Set RNG = .ListObjects("Temp").ListColumns("Desc").DataBodyRange
For Each cell In RNG.Cells
cell.Value = "Chq No " & .ListColumns("Chq Nq").DataBodyRange.Value & .ListColumns("Desc").DataBodyRange.Value
Next cell
However I get an error saying "Object doesn't support property or method"
Please can someone give me the correct code