Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Objective:
To be able to paste a selected area of date from one worksheet of a different workbook into a specific starting location. The data needs to be inserted as values and cannot overwrite the data below the starting insert location. What I tryied: Paste Special (values) gets me the values I want but overwrites other data in worksheet. Insert copied cells seems to work but it brings over all the formula and formatting from other workbook that I dont need. Hoping there maybe a macro solution for this. I started a "paste" macro on the target worksheet but need help with coding instructions to actually paste or insert the data as noted in the objective. Imported data will be accessed by other worksheets of the workbook so I don't think that pasting as object will work, which I didnot try for that reason. Any help, links or sugestions will be greatly appreciated. Thank you all in advance. Floss. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Floss,
How about counting the rows in your selection and then inserting that many rows into the destination worksheet and then pasting the data? HTH, Greg "floss" wrote in message ... Objective: To be able to paste a selected area of date from one worksheet of a different workbook into a specific starting location. The data needs to be inserted as values and cannot overwrite the data below the starting insert location. What I tryied: Paste Special (values) gets me the values I want but overwrites other data in worksheet. Insert copied cells seems to work but it brings over all the formula and formatting from other workbook that I dont need. Hoping there maybe a macro solution for this. I started a "paste" macro on the target worksheet but need help with coding instructions to actually paste or insert the data as noted in the objective. Imported data will be accessed by other worksheets of the workbook so I don't think that pasting as object will work, which I didnot try for that reason. Any help, links or sugestions will be greatly appreciated. Thank you all in advance. Floss. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sheets("Data").Select
Range("B8").Select 'Cell where you want to enter data Selection.EntireRow.Insert ' Opens a free row to put Data Range("B8").Selec -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to paste values created by custom format? | Excel Discussion (Misc queries) | |||
Custom macro and custom button | New Users to Excel | |||
2003 - 2007 custom macro and custom button restore. | Excel Discussion (Misc queries) | |||
Macro to copy and paste into a custom filter | Excel Discussion (Misc queries) | |||
need custom cut and paste functions | New Users to Excel |