ActiveCell.Column()?

davidam

Active Member
Joined
May 28, 2010
Messages
468
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

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
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,203,242
Messages
6,054,349
Members
444,717
Latest member
melindanegron

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