Set Activecell

odsmith

Board Regular
Joined
Nov 15, 2012
Messages
70
I'm trying to figure out how to stop typing "activecell" in my code.

I would like to be able to set a variable like "AC" for activecell in memory for every excel file I open. I always have an open workbook in the background hidden with ADHoc code. I would like to add a statement that would abbreviate activecell to "AC" or activecell.offset to ACO.

Any help would be appreciated.

Thanks,
Oak
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
make a function that becomes the Activecell, then call it. Usage: MsgBox AC.Value

Code:
public function AC() as range
set AC = activecell
end function
 
Upvote 0
Thank you.....That worked when I placed the code in the workbook that was current and I was using. Is there a way I can make that work when the code is placed in a hidden workbook, and then execute it in the active workbook?
 
Upvote 0

Forum statistics

Threads
1,225,155
Messages
6,183,212
Members
453,151
Latest member
Lizamaison

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