VBA Graph Range from another sheet

elotromateo

New Member
Joined
May 19, 2010
Messages
42
I'm trying to update a data range for a graph, but the data is in another sheet and I do not know how to reference that sheet. Right now it just takes data from current sheet (blank cells) as opposed to the desired information.

Code:
Sub UpdateGraph()
'
' Macro1 Macro
'

Dim LastRow As Long

Sheets("Data Sheet").Select
LastRow = Range("B" & Rows.Count).End(xlUp).Row

Sheets("Graphs").Select
ActiveSheet.ChartObjects("Chart 3").Activate
    
ActiveChart.SeriesCollection(2).XValues = Range(Cells(3, 3), Cells(LastRow, 3))
ActiveChart.SeriesCollection(2).Values = Range(Cells(3, 15), Cells(LastRow, 15))
    
End Sub
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Sub UpdateGraph()
Dim LastRow As Long
With Sheets("Data Sheet")
.Select
LastRow = Range("B" & Rows.Count).End(xlUp).Row

Sheets("Graphs").Select
ActiveSheet.ChartObjects("Chart 3").Activate

ActiveChart.SeriesCollection(2).XValues = .Range(.Cells(3, 3), .Cells(LastRow, 3))
ActiveChart.SeriesCollection(2).Values = .Range(.Cells(3, 15), .Cells(LastRow, 15))
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,733
Members
452,939
Latest member
WCrawford

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