How to pick active cell vba

bullcreel

Board Regular
Joined
Aug 25, 2016
Messages
157
Office Version
  1. 2021
Platform
  1. Windows
I am a novice at VBA, so need a little help

Lets say I have a "K" in cell A1
Lets say i have the active cell as c1. I want the macro to put a "K" into cell C1. Lets say the active cell next time is F1, I want the macro to then put a "K" into F1.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Do you mean something like this?

VBA Code:
ActiveCell.Value = ActiveSheet.Range("A1").Value
 
Upvote 0
That is what I wanted...I know kind of easy for you...It works perfectly.
 
Upvote 0
Now if i want to build on this. How do i incorprate a list? Lets say that now "A1" is a list of 7 items. Instead of picking the "K", I want to pick from the list of 7 items and paste into activecell.
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,398
Members
449,222
Latest member
taner zz

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