Need Help: 2 or more access database files into 1 pivot table - (2010 ver)

neilbomb123

New Member
Joined
Nov 11, 2015
Messages
2
Hi All,

I have limited knowledge with MS Access. I'm using it as a pivot table source due it my raw data is a bit big for an excel worksheet alone.

I am currently using Office 2010. I have 2 access database files which has 1 table in it each. The first file has reached it max GB limit so I created a new one to put in the other raw data. (running YTD worth of data).

What I'm trying to achieve is to use these 2 access database files into one pivot table. How can i do this?

Really appreciate any answers/reply.

Thank you.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi
Simple create query for union tables from old and new databases and use them for pivoting
Code:
Select * From [;Database=d:\Path\oldDatabaseName.accdb].[OldTableName] as t1
union
Select * From TableNameInNewDatabase
Or link the table from the old database to the new database and union them together
Code:
Select * TableNameInNewDatabase
Union
Select * LinkTableName
Regards,
 
Upvote 0

Forum statistics

Threads
1,221,832
Messages
6,162,255
Members
451,757
Latest member
iours

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