Share via

Pie chart size and position in PPT

Anonymous
2014-02-06T17:25:19+00:00

I have a different pie chart displayed in each of five slides.  I need to make these 5 existing pie charts the exact same size and place them in exactly the same position.

I have not found a way to do this i  PowerPoint 2007. Is it possible in 2010 or 2013?

Microsoft 365 and Office | PowerPoint | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

8 answers

Sort by: Most helpful
  1. Anonymous
    2017-02-16T16:31:25+00:00

    You can use the following macro and adjust width/height/left/top by trial and error to appropriate values for you.

    Sub Macro4()

    '

    ' Macro4 Macro

    '

    ' Keyboard Shortcut: Ctrl+q

    '

    For Each objCht In ActiveSheet.ChartObjects

    With objCht.Chart

                    .PlotArea.Width = 125

                    .PlotArea.Height = 125

                    .PlotArea.Left = 30

                    .PlotArea.Top = 100

    End With

    Next

    End Sub

    Was this answer helpful?

    6 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2014-02-07T07:42:19+00:00

    Charts DO have dimensions and positions so I'm not sure what you are saying.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2014-02-06T21:11:18+00:00

    Can you align each with using guides, and change the height and width of each using the Size section of the format tab?

    Christine

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2014-02-06T17:41:02+00:00

    Thanks, but I need to leave the pies on their slides. Just need to make them the same size and place them in the same position. Other objects in PPT have dimensions and positions, are pie charts really excluded?

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2014-02-06T17:33:48+00:00

    If you select all five charts, copy and paste to a new slide and then adjust the data. Doesn't that work?

    If not - pretty sure Steve's PPTools can do this.

    Was this answer helpful?

    0 comments No comments