Copy value in column a

watchouse

New Member
Joined
Sep 20, 2013
Messages
3
Hi,

This is a bit tricky to explain but here goes...

I have a macro that copies the value on the current cells, then goes to a form type sheet and pastes it so that the contents of the form are calculated using vlookup. The only thing is that the current cell has to be the the cell I want to copy.

What I need is some code that copies the content of the first column (column A) regardless of which is the the current cell on that row.

Thanks,
Andy
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.

ZoNe747

New Member
Joined
Sep 1, 2014
Messages
8
Hi Andy would this help?



Range("C2").Select
Selection.Copy
Range("C2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
 
Upvote 0

Forum statistics

Threads
1,191,216
Messages
5,985,319
Members
439,957
Latest member
khaled shafy

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
Top