E
Excel_VBA_Newb
How do I perform this:
'Obtain last column that contains data
lastCol = ActiveSheet.UsedRange.Column - 1 +
ActiveSheet.UsedRange.Columns.Count
'Convert to Alpha
(code omitted for brievity)
'Define the Column in the range based on the previous check
Range(lastCol:lastCol).Insert Shift:=xlToLeft
Thanks.
'Obtain last column that contains data
lastCol = ActiveSheet.UsedRange.Column - 1 +
ActiveSheet.UsedRange.Columns.Count
'Convert to Alpha
(code omitted for brievity)
'Define the Column in the range based on the previous check
Range(lastCol:lastCol).Insert Shift:=xlToLeft
Thanks.