Set Chart data area using Lastrow

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,404
Office Version
  1. 2016
Platform
  1. Windows
I'm trying to set the source range of a chart to the last used row but I'm struggling, this is what I have so far;

VBA Code:
LastRow = Sheet5.Range("A65536").End(xlUp).Row
ActiveChart.ChartArea.Select
ActiveChart.SetSourceData source:=Range("B1:B" & LastRow",D1:D" & LastRow",F1:F" & LastRow",H1:H" & LastRow",J1:J" & LastRow",L1:L" & LastRow",N1:N" & LastRow",P1:P" & LastRow"")

The code is highlighted red and I've made a number of tweaks but can't get it to work - can someone please put me out of my misery?
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Try this

VBA Code:
ActiveChart.SetSourceData Source:=Range("B1:B" & LastRow & ",D1:D" & LastRow & ",F1:F" & LastRow & ",H1:H" & LastRow & ",J1:J" & LastRow & ",L1:L" & LastRow & ",N1:N" & LastRow & ",P1:P" & LastRow)
 
Upvote 0
Hi, here's another way to write it that might be a bit easier to read/change.

VBA Code:
ActiveChart.SetSourceData Source:=Range(Replace("B1:B@,D1:D@,F1:F@,H1:H@,J1:J@,L1:L@,N1:N@,P1:P@", "@", LastRow))
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,847
Members
449,051
Latest member
excelquestion515

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