Method Range of Object Global Failed

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
I am receiving a "method range of object global failed" error on the line below

Code:
.Top = Range(Cells(((aa - 4) * 5), 1))

Code:
Set chrt = sh.ChartObjects.Add
 With chrt
.Top = Range(Cells(((aa - 4) * 5), 1))

aa is a for variable. My goal is to stack charts below one another 5 cells apart. The counter starts at the integer 5. How can I define the range with the variable?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Try:
Code:
.Top = Cells(((aa - 4) * 5), 1)
or
Code:
.Top = Range("A" & (aa - 4) * 5)
If that does not work, confirm what the value of aa is at the time of error.
 
Upvote 0
Thanks! that works...I adjusted it for chartobjects

Code:
.Top = Range("A" & (aa - 4) * 200)
 
Upvote 0
You are welcome.
 
Upvote 0

Forum statistics

Threads
1,213,543
Messages
6,114,240
Members
448,555
Latest member
RobertJones1986

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