Using VBA to copy specific data from sheet1 to another sheet in successive order

traub86

New Member
Joined
Nov 10, 2017
Messages
26
I am new to this and have exhausted my search resources. I have a workbook with 5 total sheets. 1-4 have an identical template with potentially varying data and sheet 5 captures this specific data in a row format. Sheets 1-4 all have their own VBA modules through a macro button. When I click the button it works perfectly, however I will need to click that button again without overwriting log info from the first click. I just need data to be logged in successive order until a) I am done using the template or b) I run out of available rows. Here is the vba code I am currently using:

Sub CopyDataToDZLOG()
Dim NewRow: NewRow = GetNextEmptyRowOnDZLOG
Worksheets("DZ LOG").Cells(NewRow, 2).Value = Worksheets("CHALK 1").Range("C18").Value
Worksheets("DZ LOG").Cells(NewRow, 5).Value = Worksheets("CHALK 1").Range("E7").Value
Worksheets("DZ LOG").Cells(NewRow, 6).Value = Worksheets("CHALK 1").Range("E4").Value

End Sub


Function GetNextEmptyRowOnDZLOG() As Integer
Dim RowCount: RowCount = 6
Do
RowCount = RowCount + 1
Loop Until IsEmpty(Worksheets("DZ LOG").Cells(RowCount, 20).Value)
GetNextEmptyRowOnDZLOG = RowCount


End Function



Please help...
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Now your doing this one sheet at a time I assume. We could write the script to do all sheets at the same time if you want but you did not ask for that.

You really do not need the function.
Try this script:
Code:
Sub CopyDataToDZLOG()
Dim NewRow As Long
NewRow = Sheets("DZ LOG").Cells(Rows.Count, "B").End(xlUp).Row + 1
If NewRow < 5 Then NewRow = 6
Worksheets("DZ LOG").Cells(NewRow, 2).Value = Worksheets("CHALK 1").Range("C18").Value
Worksheets("DZ LOG").Cells(NewRow, 5).Value = Worksheets("CHALK 1").Range("E7").Value
Worksheets("DZ LOG").Cells(NewRow, 6).Value = Worksheets("CHALK 1").Range("E4").Value
End Sub
 
Upvote 0
I test all my scripts.
Did you have values in the cells?

For example:
Code:
Worksheets("DZ LOG").Cells(NewRow, 2).Value = Worksheets("CHALK 1").Range("C18").Value

You must have values in the cells if you want them entered in other cells

The code should put your values someplace. They should go at least some place




So I gave that one a shot and nothing happened...Am I doing something wrong?
 
Upvote 0
You should have values in sheet named "CHALK 1"

Range("C18")
Range("E7")
Range("E4")

You must have some value in all three of these cells

Then they will be entered in sheet named: "DZ LOG"
They will go into Columns 2 5 and 6
 
Upvote 0
Ok I started from scratch with VBA code and tested my previous code and that worked as before. Then I verified values were present in C18, E7, and E4 of each of the respective worksheets that need to be copied (Chalk 1, 2, 3 and 4). Then I ran the code and nothing happens: no data transfers to worksheet "DZ LOG", no error box, and no code errors.
 
Upvote 0
You know my script will only work on sheet named Chalk1

You indicated you wanted to put this same script into buttons on all the other sheets chalk2 chalk3 chalk4

Run My script from Chalk1 with values in the cells you mentioned and see if it works.

It works for me.

Now it will not get any values from chalk2 chalk3 chalk4

If it works with chalk1 we will have to work on it working from the other sheets.
 
Upvote 0
Put this script in each of these sheets:
Since you said you wanted a button on each of these sheets.
Chalk1
Chalk 2
Chalk3
Chalk 4
Code:
Sub MineNew()
Dim NewRow As Long
NewRow = Sheets("DZ LOG").Cells(Rows.Count, "B").End(xlUp).Row + 1
If NewRow < 5 Then NewRow = 6
Worksheets("DZ LOG").Cells(NewRow, 2).Value = Range("C18").Value
Worksheets("DZ LOG").Cells(NewRow, 5).Value = Range("E7").Value
Worksheets("DZ LOG").Cells(NewRow, 6).Value = Range("E4").Value
End Sub
 
Upvote 0
So I did exactly as you said and still have the same issue: nothing's happening. I even double and triple checked that I had values in the cells and the script was fully copied and pasted.
 
Upvote 0
I want you to put this script into a brand new workbook and try it.

The only reason I can think is that the script is entering the values but they are being entered way down on the sheet where you do not see them.
Or do this:

Look on sheet named ("DZ LOG").
and look all the way down column "B" and see if you see the values.

You can click on Range("B1") and then press Control and down arrow and it will take you to first cell with text

See the script is looking for the last row in column "B" with data.

And enterers your new data in one row below
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,443
Messages
6,124,890
Members
449,194
Latest member
JayEggleton

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