Insert Range of cells from one sheet to another with shifting cells down.

PitMax

New Member
Joined
May 12, 2022
Messages
11
Office Version
  1. 365
Platform
  1. Windows
Hi,
I am looking for the VBA that will copy and insert the range of cells from one sheet to another within the same workbook.

Ideally would be to run macro with button on the source sheet.

Source sheet.png


All items should be copied and inserted to blank document. The number of items (rows) in source sheet might be different (1~300). If it helps, I have available the cell that counts the number of lines (rows) that should be inserted.
blank document.png

After press the button, the ready document should have all items inserted and the cells in columns B8:F8 should be shifted down.

ready document.png


It is important to keep document formatting (border lines, font etc.)

It would be great If I could also back to blank document.

Does anyone know how it can be done?

Thank you in advance :)
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Simply
VBA Code:
Sub test()
    Range(Range("A3:E3"), Range("A3:F3").End(xlDown)).Copy
    Sheets("Sheet2").Range("B7").Insert Shift:=xlDown
End Sub

"It would be great If I could also back to blank document."

VBA Code:
Sub test()
Dim rng As Range
Set rng = Range(Range("A3:E3"), Range("A3:F3").End(xlDown))
    rng.Copy
    Sheets("Sheet2").Range("B7").Insert Shift:=xlDown
    rng.ClearContents
End Sub
 
Upvote 0
Thank you (y)
In my spreadsheet the range on source sheet is every time different. There are the same columns, but number of rows is changing.
Is there any solution, that excel will automatically move and insert the required cells from the table (excluding table headings)?
i.e. on source sheet, in column AA there could be the control letter "X" in all rows that should be copied to blank document.

....and clear document to blank one. (i.e. In column AA in document there would be the control mark "X" in all lines that belong to blank document, so all rows that has no "X" can be deleted)

Do you think it might work in this way?
 
Upvote 0
Simply
VBA Code:
Sub test()
    Range(Range("A3:E3"), Range("A3:F3").End(xlDown)).Copy
    Sheets("Sheet2").Range("B7").Insert Shift:=xlDown
End Sub



VBA Code:
Sub test()
Dim rng As Range
Set rng = Range(Range("A3:E3"), Range("A3:F3").End(xlDown))
    rng.Copy
    Sheets("Sheet2").Range("B7").Insert Shift:=xlDown
    rng.ClearContents
End Sub
Above code clears the source sheet (Sheet 1)
Regarding "back to blank document" I was rather thinking about the sheet2 document and the command button placed on sheet2 that restore the document to the prior insert look - (see the picture)
1665139511594.png

It could also be the command button that will be placed on sheet1, so the first step will be restore Sheet2 document to blank, and the second step will be copying and inserting the range from Sheet1.
In this way the user will be sure that copied data will be inserted to blank document and won't be duplicated or added to former/existing data.
 
Upvote 0
It could also be the command button that will be placed on sheet1, so the first step will be restore Sheet2 document to blank
VBA Code:
Sub test()
    Dim rng As Range
    Dim lr&
    With Sheets("Sheet2")
        lr = .Cells(Rows.Count, 5).End(xlUp).Row - 7
        If lr > 1 Then
            With .Cells(7, 2)
                .Resize(lr, 5).ClearContents
                .Resize(lr - 1, 5).Delete xlUp
            End With
        End If
    End With
 Range(Range("A3:E3"), Range("A3:F3").End(xlDown)).Copy
    Sheets("Sheet2").Range("B7").Insert Shift:=xlDown
End Sub
 
Upvote 1
Solution
You are very welcome
And thank toy for the feedback
Be happy and safe
 
Upvote 0
I have found one small issue. When I have one item (one row), the Run-Time error '1004' appears:
Debug - error.png


What should be amend in the code to:
1) Copy and insert 12 columns.

2) run the button on the sheet 3 to copy from sheet1 to sheet2

3) is it possible to run this macro with "clean document" effect to more than one sheet, so by clicking the button the data will be inserted to more than one document from the same source sheet?
(i.e. by describing exact name of the target sheet in the code)

Cheers,
 
Last edited:
Upvote 0
"Small" update ;)

What should be amended in the code to copy and insert 11 columns:

If on the Sheet1 L6="" than source sheet data range to copy starts in C8:M8, otherwise C8:K8 & N8:O8

Destination document #1: Sheet2 - the first row of inserted data If L6="" than consequently (A21:K21) otherwise C8:K8 to A21:I21 & N8:O8 to J21:K21

Destination Document #2: Sheet4 - the first row of inserted data (A10,C10:E10) , so the cells in the first row should be copied and inserted as follow: C8 to A10, D8 to C10, E8 to D10, K8 to E10

I would like to run the code with button which is placed on the sheet 3 and already has one macro that is unhiding requested sheets (see below).
________________________________________________________________

Private Sub CommandButton3_Click()

'Unide all sheets that contain a value in a specific cell

Dim ws As Worksheet

'Unide sheets with value of Hide in cell AA2
For Each ws In ActiveWorkbook.Worksheets
If ws.Range("AA2").Value = CELLVALUE Then
ws.Visible = xlSheetVisible
End If
Next ws

End Sub

________________________________________________________________


Could you please advise me how to run both macros from on the same button click:
1# copy and insert
2# unhide...

Cheers,
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,835
Members
449,051
Latest member
excelquestion515

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