Pivot Table From Dynamic Rows

thriller_1981

New Member
Joined
Sep 20, 2006
Messages
2
Good morning..!

Can anybody help?

We collect data from some databases into Excel, the source Excel files are transferred out to a local folder with the macros for creating pivot tables sitting in a separate Excel workbook.

I need the source data range in the macro to be dynamic so it will create the pivot tables successfully regardless of the fact there may be different amounts of rows each time. Will I need to be changing this section..?

(SourceType:=xlDatabase, SourceData:= _
"Q_MySpreadsheet!R1C1:R4723C10")

Help would be greatly appreciated, thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Try:

Code:
Dim LastRow as Long
LastRow = Worksheets("Q_MySpreadsheet").Range("A65536").End(xlUp).Row

Then your snippet becomes:

(SourceType:=xlDatabase, SourceData:= _
"Q_MySpreadsheet!R1C1:R" & LastRow & "C10")
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,986
Members
448,538
Latest member
alex78

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