Using .Value property instead of copy paste method to transfer values from one row to next blank row

anbhavane

New Member
Joined
Jul 12, 2021
Messages
20
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
Hello friends..

I want to use Range("Sheet1").value property instead of copy paste method in VBA to transfer values from one complete row to next blank row below. can someone please help in coding.
My range is from (A1:J1)

Regards..
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi & welcome to MrExcel.
How do you determine which row to copy the values to?
 
Upvote 0
Hi & welcome to MrExcel.
How do you determine which row to copy the values to?
Thank you for prompt reply..

I want to transfer dynamic data from row range A1:J1 to row A2:J2 and onwards below, but I dont want to use copy pastespecial method. I want to use Sheets(Sheet1).range(A1:J1).value = Sheets(Sheet1).range(A2:J2).value instead to fill the next blank row below.
 
Upvote 0
Will column A on sheet2 contain a value on every used row?
 
Upvote 0
Will column A on sheet2 contain a value on every used row?
My dynamic data is in columns A to J in Row 1 ie. from A1 to J1. I want to copy those values to A2:J2 and onwards. like A3:J3, A4:J4 and so on... all data will be on same sheet ie. sheet1
 
Upvote 0
Can you please just answer my question?
 
Upvote 0
Can you please just answer my question?
I have answered your question sir.. all data will be on same sheet... ie. sheet1. Column A till Column J will have different values. each row will record changed values on specific intervals..
 
Upvote 0
You have not answered either of my questions. You want the values to be copied to the first blank row, but you have not said how to determine what that row is.
If you cannot tell me that, there's not much I can do to help.
 
Upvote 0
You have not answered either of my questions. You want the values to be copied to the first blank row, but you have not said how to determine what that row is.
If you cannot tell me that, there's not much I can do to help.
The values are in number format in all cells of a row
 
Upvote 0
As you cannot be bothered to give me a straight answer to a simple question try this
VBA Code:
Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(, 10).Value = Sheets("Sheet1").Range("A1:J1").Value
If that does not do what you want, then you will need to clearly answer my question.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,084
Messages
6,123,028
Members
449,092
Latest member
ikke

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