Importing data via VBA but not to overwite data

sharon9999

New Member
Joined
Mar 21, 2017
Messages
20
Hi

I am trying to import data but to insert rather than paste.
The code I have is pasting the data in to columns A-E but the existing data in columns G-I is moved down rows.
The code is
Cells.Select
Selection.Copy
Sheets("No Answer").Select
Range("A1").Select
ActiveSheet.Paste
Columns("A:E").Select
Columns("A:E").EntireColumn.AutoFit
Range("A1").Select

instead of paste I have tried ActiveSheet.Insert shift:=xlToRight, but no luck.

The data in columns G-I have formulas linking to columns A-E, I need the data pasted next to the G-I columns for the formulas to work.

Please help??

Thanks
SC
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
instead of
Code:
Cells.Select
Try
Code:
Range("A:E").Select
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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