Insert Column with heading "Detail" and autofill with date and workbook file name until last row

krg220

New Member
Joined
Mar 7, 2011
Messages
2
Hi,

I'm trying to find the commands to create a column with the heading "Detail" and then autofill the rows below to say "List Upload-"filename"_"current month & year".

For example, let's say I'm working with a file named 'ExecutiveManagers.csv' in March 2011, how can I create a column that says:

Detail
----------
List Upload - ExecutiveManagers_Mar2011
List Upload - ExecutiveManagers_Mar2011
List Upload - ExecutiveManagers_Mar2011
List Upload - ExecutiveManagers_Mar2011
List Upload - ExecutiveManagers_Mar2011
List Upload - ExecutiveManagers_Mar2011
List Upload - ExecutiveManagers_Mar2011

...and on until the last row.

I currently use this to create a new column:

Columns("B:B").Select
Selection.Insert Shift:=xlToRight
Range("B1").Select
ActiveCell.FormulaR1C1 = "Status"
Range("b2").Select
ActiveCell.FormulaR1C1 = "Prospecting"
Range("b2").Select
LR = Range("A" & Rows.Count).End(xlUp).Row
Range("B2").Select
Selection.AutoFill Destination:=Range("B2:B" & LR), Type:=xlFillDefault
Range("B2:B" & LR).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False


any feedback would be greatly appreciated, thank you!!

-krg220
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Use this to copy down (assuming you have a column next to this one with data in it)



Sub CopyDown()

Range("B2").Select

Selection.Copy
ActiveCell.Offset(1, 0).Select
Set upperLeftcell = ActiveCell
ActiveCell.Offset(0, -1).Select
Cells(65536, ActiveCell.Column).End(xlUp).Select
ActiveCell.Offset(0, 1).Select
Set lowerRightcell = ActiveCell
Range(upperLeftcell, lowerRightcell).Select
ActiveSheet.Paste
Application.CutCopyMode = False

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,589
Messages
6,120,415
Members
448,960
Latest member
AKSMITH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top