referstorange problem

Ken Cowen

Board Regular
Joined
Jan 18, 2015
Messages
217
I have an addin that has range names that are used in code that is called from another open workbook. Most of the range names refer to a single cell and I successfully use the value of those cells with the following code:

pool_fringe = Awb.Names("pool_fringe").RefersToRange.value
pool_ga = Awb.Names("pool_ga").RefersToRange.value
pool_overhead = Awb.Names("pool_overhead").RefersToRange.value

db_mat_accounts = Awb.Names("db_mat_accounts").RefersToRange

the first three variables are public variables declared as strings. The fourth is a public variable declared as a Range, and it doesn't work. I get an error "Object variable of with block variable not set" on the fourth line about. There are no with blocks involved.

Can someone explain why this is not working?

Thanks

Ken
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
You just need to use 'Set' when setting a range to a variable

Code:
Set db_mat_accounts = Awb.Names("db_mat_accounts").RefersToRange
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,207
Members
452,618
Latest member
Tam84

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