Legal Information |
|
The data contained in an Access database can be analysed using Excel and PivotTables. The data needs to be exported to an Excel file first of all.
If the database contains records from Lookup columns the actual data exported is the index into the appropriate table not the actual data that would be seen by looking at the record in Access. A workbook needs to be created that contains
For the merged worksheet, the data needing to be copied directly from the originally exported database is copied using the simple Excel statement
=(worksheetid!cell number)Data that is derived from lookup tables is copied into the merged worksheet using the Excel Lookup function
=LOOKUP(cellnumber,lookuptableworksheet!range1,lookuptableworksheet!range2)where
The idea is that the LOOKUP function will search lookuptableworksheet!range1 to find a value that matches the index value stored in the records originally exported from the database and return the required vale, lookuptableworksheet!range2.
The merged worksheet forms the basis for PivotTable analysis.
Search Knowledge Base | Feedback |