Move data into empty row and remember

abcdefgh

New Member
Joined
Mar 23, 2016
Messages
2
Hi, so I'm really new to this and don't even know how to get started with this one.

I have information in cell "AU" on sheet "Input Sheet".
I want to move the information in this cell to the first available row in column "B" on sheet "Master Sheet" when I press a button.
The information in cell AU will be constantly changing so I somehow want the cell in column B to remember what went into it.
I literally have no idea what I'm doing so any help would be appreciated.

Thank you x
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi, so I'm really new to this and don't even know how to get started with this one.

I have information in cell "AU" on sheet "Input Sheet".
I want to move the information in this cell to the first available row in column "B" on sheet "Master Sheet" when I press a button.
The information in cell AU will be constantly changing so I somehow want the cell in column B to remember what went into it.
I literally have no idea what I'm doing so any help would be appreciated.

Thank you x

something like this will get you started

Code:
sheets("Input Sheet").range("AU1").copy
sheets("Master Sheet").range("B1").end(xldown).offset(1).paste
 
Upvote 0
Thank you! I was wondering if you could help me further though. This just doesn't seem to be working!


Sheets("Input sheet").Select
Range("AU2").Select
Selection.Copy
Sheets("Master Sheet").Select
Range("B1").End(xlDown).Offset(1).Paste
 
Upvote 0
Thank you! I was wondering if you could help me further though. This just doesn't seem to be working!


Sheets("Input sheet").Select
Range("AU2").Select
Selection.Copy
Sheets("Master Sheet").Select
Range("B1").End(xlDown).Offset(1).Paste

try this

Code:
sheets("Input Sheet").range("AU1").copy
sheets("Master Sheet").range("B" & sheets("Master Sheet").rows.count)).end(xlup).offset(1).select
Selection.PasteSpecial xlPasteAll
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,572
Messages
6,120,306
Members
448,955
Latest member
Dreamz high

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