Open and format other workbook

Rahulwork

Active Member
Joined
Jun 9, 2013
Messages
284
Hello Everyone

I need your help to create a code for below action

- Open workbook path mentioned in A1
D:\abc.xlsx
- add four column in starting
- Give heading to four column as A, B, C and D
- in A4, concatenate F4 and G4.. and drag till the last row. .

Same.and close workbook.

Pls help
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Like this?

VBA Code:
Sub dothestuff()

Dim sht As Worksheet
Dim LastRow As Long

Workbooks.Open "D:\abc.xlsx"

Set ws = ActiveSheet

ws.Columns("A:D").Insert
ws.Range("A1") = "A" ''etc
LastRow = ws.UsedRange.Rows(ws.UsedRange.Rows.Count).Row

r = 4
For r = 4 To LastRow
    ws.Cells(r, 1) = ws.Cells(r, 6) & ws.Cells(r, 7)
Next r

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,257
Members
449,075
Latest member
staticfluids

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