MS Access 2000 / Project against OLAP Cubes back-end

S

Steven Wong

Can you connect MS Access 2000 or Access Project against
MS OLAP cubes in the back-end, and develop front-end
application against it?

Please provide some insights. Thanks.
 
J

J. Clay

There may be a better way, but I created a pivot table in Excel on an OLAP
Cube and embedded it in a form in Access. I use it for item sales analysis
by period (Year, month, day...). I open the form from my item form and then
run the following code to filter it to the specific item I am looking at.

Set objExcel =
Forms("NP_ItemSalesAnalysis").XLSalesPivot.ActiveSheet

On Error GoTo PivotError
objExcel.PivotTables("PivotTable1").PivotFields("[Inventory
Items]"). _
CurrentPageName = "[Inventory Items].[All Inventory Items].[" &
strItem & "]"

Notice the last line was a continuation. The strItem is my inventory item I
want to filter on.

HTH,
J. Clay
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top