Hey guys! I am wondering if there is anyone out there that can help me with this...

I have an Access db that I use to track metrics where I work and "number crunch" for data that I use to build ppt presentations. I have to usually do about 40 ppt's per month, and they are 98% charts.

Right now, I run queries one at a time (using SQL statements), take the resulting data and copy and paste it into and excel template (simply i made a mock table in this "template" so that the chart is already built and formatted), then copy the chart as a picture into a ppt template.

So there is a lot of manual work, which would not be that bad only I have a tone of these to do in a month's time.

SO.....how can I first of all run multiple queries in Access with VBA on the same dataset/table (I have to do sales by quarter, by month, by region, by state, by site...and all of these are Top5 aggregate, hence the reasons for the charts), and then send the resulting data to an specific excel workbook, while define what goes into what cell range???

If I get all the data into excel, and have the charts ready to go, then is there some VBA that will take the charts from excel (activeworksheet) and paste them into powerpoint as pictures in a quad view layout?

Can I do the same thing with an Access to PowerPoint approach and cut out excel all together?

I am a novice at best! ANY and ALL help, tips, advice is greatly appreciated!

link|improve this question
It would be helpful if you told us which specific versions of Excel, Access etc that you are using. 2003? 2007? That way we can provide specific examples of VBA code. – JonnyBoats May 17 '09 at 14:51
that would be windows server xp...so i am guessing its MSoffice 200-2003?? 2003 i think – Justin Jul 19 '09 at 13:35
really useful question! i also had some macros to automate publishing lot of tables and charts from Excel to PowerPoint. I do this using copiing range of cells to clipboard and then paste special as picture command. now i will try another idea - i will put all those charts to access report and then generate powerpoint slides from access. – Bogdan_Ch Nov 9 '09 at 18:58
feedback

5 Answers

You don't need to use Excel at all ! Use MS Access Charts in a report and some VBA code to put them into Powerpoint directly. There is already an example here

One "gotcha" is if you generate graphs in a group ie you design the report with a graph that is inside a group - so when you run the report you will get numerous graphs created.

It is a bit tricky to get hold of each of these graphs and drop them into Powerpoint but here is some code that will take care of it. This works in Access 2003

'Loop through all the controls in this report and pickout all the graphs
For Each c In pReport.Controls

    'Graphs initially appear to be in an Object Frame
    If TypeOf c Is ObjectFrame Then

        'Check the Class of the object to make sure its a Chart
        If Left$(c.Class, 13) = "MSGraph.Chart" Then

            'Check if this graph must be cloned (required if the graph is in a group in the MS Access report)
            If Not IsGraphToBeCloned(pReport.Name, c.ControlName) Then

                InsertGraphToPptSlide c, "", pReport.Name
            Else
                InsertGraphGroupToPpt pReport.Name, c
            End If
        End If
    End If
Next

This will find all the graphs in the report, if the graph is in a group then we call the InsertGraphGroupToPPt function.

The trick here is that we know we have the same base graph multiple times - but populated with different data. So in Powerpoint what you need to do is paste the base graph into powerpoint slides n times - where n is the number of groups and then update the graphs query properties

eg

Function UpdateGraphInPowerpoint(sql As String, OrigGraph As ObjectFrame, Groups As dao.Recordset, GroupName As String, ReportName As String) As Boolean

//Copyright Innova Associates Ltd, 2009
On Error GoTo ERR_CGFF
On Error GoTo ERR_CGFF

Dim oDataSheet As DataSheet
Dim Graph As Graph.Chart
Dim lRowCnt, lColCnt, lValue As Long, CGFF_FldCnt As Integer
Dim CGFF_Rs As dao.Recordset
Dim CGFF_field As dao.Field
Dim CGFF_PwrPntloaded As Boolean
Dim lheight, lwidth, LLeft, lTop As Single
Dim slidenum As Integer
Dim GraphSQL As String
Dim lGrpPos As Long

'Loop thru groups
Do While Not Groups.EOF

    'We want content to be added to the end of the presentation - so find out how many slides we already have
    slidenum = gPwrPntPres.Slides.Count
    OrigGraph.Action = acOLECopy            'Copy to clipboard
    slidenum = slidenum + 1                 'Increment the Ppt slide number
    gPwrPntPres.Slides.Add slidenum, ppLayoutTitleOnly   'Add a Ppt slide

    'On Error Resume Next    'Ignore errors related to Graph caption
    gPwrPntPres.Slides(slidenum).Shapes(1).TextFrame.TextRange.Text = ReportName & vbCrLf & "(" & Groups.Fields(0).Value & ")" 'Set slide title to match graph title
    gPwrPntPres.Slides(slidenum).Shapes(1).TextFrame.TextRange.Font.Size = 16

    gPwrPntPres.Slides(slidenum).Shapes.Paste  'Paste graph into ppt from clipboard

    Set Graph = gPwrPntPres.Slides(slidenum).Shapes(2).OLEFormat.Object

    Set oDataSheet = Graph.Application.DataSheet    ' Set the reference to the datasheet collection.
    oDataSheet.Cells.Clear                          ' Clear the datasheet.

    GraphSQL = Replace(sql, "<%WHERE%>", " where " & GroupName & " = '" & Groups.Fields(0).Value & "'")
    Set CGFF_Rs = ExecQuery(GraphSQL)


    CGFF_FldCnt = 1
    ' Loop through the fields collection and get the field names.
    For Each CGFF_field In CGFF_Rs.Fields
        oDataSheet.Cells(1, CGFF_FldCnt).Value = CGFF_Rs.Fields(CGFF_FldCnt - 1).Name
       CGFF_FldCnt = CGFF_FldCnt + 1
    Next CGFF_field

    lRowCnt = 2
    ' Loop through the recordset.
    Do While Not CGFF_Rs.EOF

        CGFF_FldCnt = 1
        ' Put the values for
link|improve this answer
feedback

Since you are a novice, perhaps you should break the task down into parts and automate the parts one at a time. Each step will provide benefits (i.e. time savings) and you can learn as you go.

It is hard to make specific recommendations based upon lack of specific information (what version etc.). That having been said, perhaps a good first step would be to link the Excel tables to the access queries so that the spreadsheets can auto-update every month and you will not have to cut and paste data from Access into Excel. You can do this linking entirely within Excel.

If you are using Excel 2007 click on "Data" in the Ribbon and then click on "From Access".

link|improve this answer
feedback

What you're asking is a lot of work:

Via VBA you'd have to open Excel (Excel Application manipulation from Access) , update your charts (Range manipulation, Data Update) if you have the rights then I would suggest having your pivot charts connected to the Access data and not pasted into the workbook, nevertheless I've been in enough situations where that was not possible. Then you would have to open your PowerPoint presentation and copy from the Excel to the PowerPoint. I've done all of these and know how much work it can save by creating a macro (via VBA) to do this. It's a lot of code.

link|improve this answer
feedback

actually the import from access to excel method in the ribbon will work for me perfectly! I would love to learn the code and general familiarity with automation...for a host of applications. but it seems impossible to find help/example of where to start online...

Anyone know where I could possibly start learning about this?

One thing I need to do is create a form in access that will create a powerpoint presentation.

Thanks guys! I do appreciate it!

link|improve this answer
feedback

hey this was working great but I hit a snag. I am using MSO 2003, and I have a database where I run mutiple queries from. Then I wanted to link a spreadsheet to the database and pull results from a few different queries into specific ranges. It was working fine by just selecting Data > Import Data > and then selecting the location of the database. It was then throughing up a selection window that allowed me to select from a list of objects in the database (both tables and queries).

now, all of a sudden when I try to use this method it only popluates tables, and there are no queries (though I know I have plenty of queries in the db). And if I select a table it just transfer that entire dataset to the spreadsheet.

I really need to be able to do this because I use that spreadsheet as a template for creating charts. All those queries are aggregate TOP 5 queries, and the auto refresh upon open is what was making this a very useful solution for me!

thanks for any and all advice!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown