Catch the end row and put it in SourceData

Joy Liao

New Member
Joined
Jul 4, 2022
Messages
3
Office Version
  1. 2019
Platform
  1. Windows
Hey guys!
I'd like to change the data source of "PivotTable3" in the sheet "Mypivot". And the source is "Sheet1".

The original code works as following!
But because every time I have to run the Macro, the end row would be different (the file is downloaded from database), I want to make it catches the end row automatically.
I put code between R & C but seems useless.

Do someone knows how to fix it? Thank you so much!!

------------------------------------------------------------------------------
'The original One(it works)
Sheets("Mypivot").Select
ActiveSheet.PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"Sheet1!R3C1:R33537C38", Version:=6)
------------------------------------------------------------------------------
'After I Edited (and this one failed)
Range("D3").Select
rowend = Val(ActiveCell.End(xlDown).Row)

Sheets("Mypivot").Select
ActiveSheet.PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"Sheet1!R3C1:R(rowend)C38", Version:=6)
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
You need to concatenate the value in:

VBA Code:
Sheets("Mypivot").PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"Sheet1!R3C1:R" & rowend & "C38", Version:=6)
 
Upvote 0
Solution
You need to concatenate the value in:

VBA Code:
Sheets("Mypivot").PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"Sheet1!R3C1:R" & rowend & "C38", Version:=6)
Amazing! It works great. Thank you for your helping hand! I appreciate that!
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,040
Members
449,092
Latest member
ikke

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