JackDanIce
Well-known Member
- Joined
- Feb 3, 2010
- Messages
- 9,922
- Office Version
- 365
- Platform
- Windows
Hi,
Have this code:
Where I want to fill with contatenated values of two columns (Ex & Cx where x is row number), without looping, but above returns #VALUE .
Please can someone correct?
TIA,
Jack
Have this code:
Code:
Sub Add_Column_for_Pivot()
Dim x As Long: x = LastRow(wData)
With Range("J1:J" & x)
.Value = Evaluate("IF(" & .Address & "," & .Offset(, -5).Address & "&" & .Offset(, -7).Address)
End With
End Sub
Please can someone correct?
TIA,
Jack
Last edited: