Hi,
I'm trying to insert a column in between columns A & B. Then in the new B1 I would like to write text that says "Unique Key"
Then in cells b2:end of data set I want to write =concatenate(F1,"-",R1,"-",T1) and have it copy this formula all the way down column B until the data stops in those other columns.
I have the first part of the code which inserts a column, the rest is hard for me:
Here's what I have so far:
Any ideas?
Thanks!
I'm trying to insert a column in between columns A & B. Then in the new B1 I would like to write text that says "Unique Key"
Then in cells b2:end of data set I want to write =concatenate(F1,"-",R1,"-",T1) and have it copy this formula all the way down column B until the data stops in those other columns.
I have the first part of the code which inserts a column, the rest is hard for me:
Here's what I have so far:
Code:
Sub sbInsertingColumns()
Dim x As Long
Range("B1").EntireColumn.Insert
End Sub
Any ideas?
Thanks!