VBA - Value of Named Range's In Cell's (Sheet Activate)

glerwell

Well-known Member
Joined
Jun 25, 2006
Messages
1,082
Hi

I have two named ranges (month and year). Both ranges are only 1 cell, so they are named cells, if there is such a thing?

When I switch the sheet question I would like the current value of the ranges to appear in cells K29 and K30.

I have treid this code:

Code:
Private Sub Worksheet_Activate()
Range("K29").Value = Range("month").Value
Range("K30").Value = Range("year").Value
End Sub

However, I keep on getting a debug, why?

Cheers
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
How have you defined these names?

Are they worksheet or workbook level names?
 
Upvote 0
Workbook I think?

The scope is listed as "workbook" in the name manager.

To define the range, I highlighted the cell in question, typed the name in the namebox and pressed enter.
 
Upvote 0

Forum statistics

Threads
1,224,560
Messages
6,179,519
Members
452,921
Latest member
BBQKING

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