Enter data from one sheet to another

MrChippy

New Member
Joined
Aug 21, 2007
Messages
1
Not sure if this is an easy question or not but:

I am trying to use one sheet as an order form and want to be able to type information into the cells and have the data show up on another sheet and then the next time I enter data into the first "form" have the data transferred to the second sheet--only this time in the row beneath the first entry rather than replacing the data--essentially turning the second sheet into a list made up of every entry into the "form" sheet. Is there a way to make the next entry into a different row between sheets like this?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi
Assuming you enter data in A3,B3,C3 and D3 of sheet1
paste the following codes in the macro window ( Alt F11)

Code:
sub dataentry()
x= worksheets("sheet2").cells(rows.count,1).end(xlUp).row
Range(A3:D3).copy
worksheets("sheet2").cells(x+1,1).pastespecial
end sub
Run the macro. It will copy from sheet1 to last row of sheet2
Ravi
 
Upvote 0

Forum statistics

Threads
1,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

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