copy paste macro

bsd9197

Board Regular
Joined
Nov 18, 2002
Messages
111
Trying to create a macro that will copy from cell A3 which I've ranged named "Input Cell" and then paste the value of whatever is in "Input Cell" into the cell where the cursor is located.

Any assistance would be greatly appreciated!

Thanks,
bsd9197
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
You don't even need to name the cell "My Input Cell". You could just do:

Code:
Sub MyCopyPaste()

    ActiveCell.Value = Range("A3").Value

End Sub
 
Upvote 0
Try: -

Public Sub CopyData()

ActiveCell.Value = Range("Input_Cell").Value

End Sub

Edit: J Miskey- your code wouldn't work as intended on a different worksheet to the named cell :wink:
 
Upvote 0
Mudface,

True. I was working under the assumption that it was on the same spreadsheet (that is what I thought the original question implied), but probably shouldn't have made that assumption.
 
Upvote 0

Forum statistics

Threads
1,221,695
Messages
6,161,360
Members
451,699
Latest member
sfairbro

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