ActiveCell.Column()?

davidam

Active Member
Joined
May 28, 2010
Messages
497
Office Version
  1. 2021
Platform
  1. Windows
Can some tell me why this:
Code:
Range("a1").Value = Range("C" & ActiveCell.Row()).Value
Works,

and this:
Code:
Range("a1").Value = Range(ActiveCell.Column() & "9").Value
does not? And... can I make it work somehow?
Thanks,
David
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
ActiveCell.Column returns an integer and the Range statement is expecting a column letter.

This should work.
Code:
Range("A1").Value = Cells(9, ActiveCell.Column).Value

Note: the () are not needed after .Column or .Row
 
Upvote 0
Works perfect. I never heard of this before and I had to look it up...the Cells Property. The more I know....
Many thanks!
David
PS Thanks for the tip on the (). D.
 
Upvote 0

Forum statistics

Threads
1,222,143
Messages
6,164,171
Members
451,880
Latest member
2da

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