Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/vba/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用vba从excel创建每张幻灯片上都有多个图表的powerpoint_Vba_Excel - Fatal编程技术网

使用vba从excel创建每张幻灯片上都有多个图表的powerpoint

使用vba从excel创建每张幻灯片上都有多个图表的powerpoint,vba,excel,Vba,Excel,我目前有一个工作代码,可以从excel电子表格中提取每个图表,并创建一个PowerPoint演示文稿,将所有图表放在同一张幻灯片上。我希望宏在每张幻灯片上放置四(4)个图表,但我遇到了问题,希望您能提供帮助。(注意-在PowerPoint中放置图表后,我没有调整图表的大小,我会在每张幻灯片中放置四(4)个图表后处理此问题)。我当前的代码如下所示 Private Sub CommandButton17_Click() 'Add a reference to the Microsoft Powe

我目前有一个工作代码,可以从excel电子表格中提取每个图表,并创建一个PowerPoint演示文稿,将所有图表放在同一张幻灯片上。我希望宏在每张幻灯片上放置四(4)个图表,但我遇到了问题,希望您能提供帮助。(注意-在PowerPoint中放置图表后,我没有调整图表的大小,我会在每张幻灯片中放置四(4)个图表后处理此问题)。我当前的代码如下所示

  Private Sub CommandButton17_Click()
'Add a reference to the Microsoft PowerPoint Library by:
'1. Go to Tools in the VBA menu
'2. Click on Reference
'3. Scroll down to Microsoft PowerPoint X.0 Object Library, check the box, and press Okay

 'keep button in same location
 Set btn = ActiveSheet.Shapes("CommandButton17")
With btn
btLeft = .Left
btTop = .Top
End With

'First we declare the variables we will be using
    Dim newPowerPoint As PowerPoint.Application
    Dim activeSlide As PowerPoint.Slide
    Dim cht As Excel.ChartObject

 'Look for existing instance
    On Error Resume Next
    Set newPowerPoint = GetObject(, "PowerPoint.Application")
    On Error GoTo 0

'Let's create a new PowerPoint
    If newPowerPoint Is Nothing Then
        Set newPowerPoint = New PowerPoint.Application
    End If
'Make a presentation in PowerPoint
    If newPowerPoint.Presentations.Count = 0 Then
        newPowerPoint.Presentations.Add
    End If

'Show the PowerPoint
    newPowerPoint.Visible = True
'        newPowerPoint.ActivePresentation.ApplyTemplate _
'            "D:\Documents and Settings\austin.plantz\Desktop\Misc Projects\CSA PP Theme.thmx"

'Loop through each chart in the Excel worksheet and paste them into the PowerPoint
    For i = 1 To ActiveSheet.ChartObjects.Count
        Set cht = ActiveSheet.ChartObjects(i)

'            With ActivePresentation.SlideMaster
'                .CustomLayouts.Add (1)
'                .CustomLayouts(1).Name = "Title And Content"
'            End With

    'Add a new slide where we will paste the chart
    If i - 1 Mod 4 = 0 Then
        newPowerPoint.ActivePresentation.Slides.Add  newPowerPoint.ActivePresentation.Slides.Count + 1, ppLayoutTitle
    End If


       newPowerPoint.ActiveWindow.View.GotoSlide newPowerPoint.ActivePresentation.Slides.Count
        Set activeSlide = newPowerPoint.ActivePresentation.Slides(newPowerPoint.ActivePresentation.Slides.Count)

    'Copy the chart and paste it into the PowerPoint as a Metafile Picture
        cht.Select
        ActiveChart.ChartArea.Copy
        activeSlide.Shapes.PasteSpecial(DataType:=ppPasteMetafilePicture).Select

    'Set the title of the slide the same as the title of the chart
        'activeSlide.Shapes(1).TextFrame.TextRange.Text = cht.Chart.ChartTitle.Text

    'Adjust the positioning of the Chart on Powerpoint Slide
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Left = 165
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Top = 150
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Width = 400

        activeSlide.Shapes(2).Width = 200
        activeSlide.Shapes(2).Left = 505

        activeSlide.Shapes(1).Top = 25

    Next

AppActivate ("Microsoft PowerPoint")
Set activeSlide = Nothing
Set newPowerPoint = Nothing

End Sub

首先将ForEach循环更改为For

For i = 1 To ActiveSheet.ChartObjects.Count
Set cht = ActiveSheet.ChartObjects(i)
然后在创建幻灯片之前放置条件:

chartNum = (i - 1) Mod 4
If chartNum = 0 Then
    newPowerPoint.ActivePresentation.Slides.Add newPowerPoint.ActivePresentation.Slides.Count + 1, ppLayoutTitle
End If
然后,在每张幻灯片上放置图表的逻辑:

  If chartNum = 0 Then
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Left = 50
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Top = 50
    ElseIf chartNum = 1 Then
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Left = 300
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Top = 50
    ElseIf chartNum = 2 Then
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Left = 50
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Top = 300
    Else
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Left = 300
        newPowerPoint.ActiveWindow.Selection.ShapeRange.Top = 300
    End If

    newPowerPoint.ActiveWindow.Selection.ShapeRange.Height = 200
    newPowerPoint.ActiveWindow.Selection.ShapeRange.Width = 200

当然,你可以自己玩左撇子、上衣、身高和宽度

在设置图表的宽度或高度之前,不要忘记使用此选项:

sr.LockAspectRatio = msoFalse

这里的
sr
代表
PPApp.ActiveWindow.Selection.shaperage

,这是我今天开始运行它的原因。。它把我所有的图表放在同一张幻灯片上。“你知道为什么会这样吗?”迈克我修改了我的答案。检查一下。欢迎来到堆栈溢出!你能解释一下为什么这个代码能回答这个问题吗?代码唯一的答案是,因为他们不教解决方案。
Option Base 1

Sub CreatePowerPoint()

        Dim newPowerPoint As PowerPoint.Application
        Dim activeSlide As PowerPoint.Slide
        Dim cht As Excel.ChartObject


        On Error Resume Next
        Set newPowerPoint = GetObject(, "PowerPoint.Application")
        On Error GoTo 0


        If newPowerPoint Is Nothing Then
            Set newPowerPoint = New PowerPoint.Application
        End If

        If newPowerPoint.Presentations.Count = 0 Then
            newPowerPoint.Presentations.Add
        End If

    'Show the PowerPoint
        newPowerPoint.Visible = True


            newPowerPoint.ActivePresentation.Slides.Add newPowerPoint.ActivePresentation.Slides.Count + 1, ppLayoutBlank
            newPowerPoint.ActiveWindow.View.GotoSlide newPowerPoint.ActivePresentation.Slides.Count
            Set activeSlide = newPowerPoint.ActivePresentation.Slides(newPowerPoint.ActivePresentation.Slides.Count)

Dim left1(8)
Dim top1(8)
left1(1) = 20: top1(1) = 70
left1(2) = 350: top1(2) = 70
left1(3) = 20: top1(3) = 300
left1(4) = 350: top1(4) = 300
left1(5) = 20: top1(5) = 70
left1(6) = 350: top1(6) = 70
left1(7) = 20: top1(7) = 300
left1(8) = 350: top1(8) = 300

n = ActiveSheet.ChartObjects.Count

  nn = WorksheetFunction.RoundUp(n / 4, 0)

  g = 1

    For pp = 1 To nn

        p = g
        t = p + 3

        x = 1

        For h = p To t

            On Error Resume Next
            ActiveSheet.ChartObjects(h).Select
            ActiveChart.ChartArea.Copy
            newPowerPoint.ActiveWindow.ViewType = ppViewSlide
            activeSlide.Shapes.PasteSpecial(DataType:=ppPasteMetafilePicture).Select
            Application.CutCopyMode = False
            With activeSlide.Shapes(x)
                .Width = 150
                .Width = 200
            End With
            With newPowerPoint.ActiveWindow.Selection.ShapeRange
                .Left = left1(x)
                .Top = top1(x)
            End With
            x = x + 1

        Next
        g = t + 1



         newPowerPoint.ActivePresentation.Slides.Add newPowerPoint.ActivePresentation.Slides.Count + 1, ppLayoutBlank
            newPowerPoint.ActiveWindow.View.GotoSlide newPowerPoint.ActivePresentation.Slides.Count
            Set activeSlide = newPowerPoint.ActivePresentation.Slides(newPowerPoint.ActivePresentation.Slides.Count)
            newPowerPoint.ActiveWindow.ViewType = ppViewSlide

Next


    AppActivate ("Microsoft PowerPoint")
    Set activeSlide = Nothing
    Set newPowerPoint = Nothing

End Sub