Share via

Add a textbox below current textbox

Anonymous
2023-05-14T14:06:48+00:00

I currently have one shape on my slide. One Textbox. I would like to add another Textbox right below the first one, but with the same dimensions.

How do I determine the dimensions of the first Textbox and then place the next one below without spilling over the bottom of the slide?

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

Answer accepted by question author

  1. Anonymous
    2023-05-14T20:01:38+00:00

    This is the basic code to replicate Steve's answer

    Sub textDupe()

    Dim osld As Slide

    Dim oshp As Shape

    Set osld = ActiveWindow.Selection.SlideRange(1)

    Set oshp = osld.Shapes(1)

    With oshp.Duplicate

    .Top = oshp.Top + oshp.Height

    .Left = oshp.Left

    End With

    End Sub

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Anonymous
    2023-05-15T14:21:54+00:00

    Thank you John. This works great.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2023-05-14T19:44:48+00:00

    Meant to put it in the title, but I was actually looking to do this with some vba since I have multiple slides I'll be doing this for.

    Was this answer helpful?

    0 comments No comments
  3. Steve Rindsberg 99,161 Reputation points MVP Volunteer Moderator
    2023-05-14T17:12:58+00:00

    Trip's suggestions are good.

    You can also click inside the first text box, press ESC to select the box rather than the text within it, then press CTRL+D to duplicate it. Then use PPT's alignment tools to align the duplicate with the first text box.

    Then move the new text box downward and let PPT's little red alignment indicators show you when you've matched the top of the new box with the bottom of the original.

    Probably takes less time to do than it took me to write.

    Was this answer helpful?

    0 comments No comments
  4. triptotokyo-5840 36,686 Reputation points Volunteer Moderator
    2023-05-14T14:25:38+00:00

    I currently have one shape on my slide. One Textbox. I would like to add another Textbox right below the first one, but with the same dimensions.

    How do I determine the dimensions of the first Textbox and then place the next one below without spilling over the bottom of the slide?

    How do I determine the dimensions of the first Textbox

    1.

    Click the Text Box then:-

    Shape Format tab

    Size group (on the far right-hand side)

    In here you’ll see the size of the Text Box for example:-

    1.03

    8.2

    and then place the next one below without spilling over the bottom of the slide?

    2.

    Insert a new Text Box beneath the existing one then:-

    Shape Format tab

    Size group (on the far right-hand side)

     - change the sizes for example:-

    1.03

    5.8

     - to the required sizes to prevent spill over.

    Was this answer helpful?

    0 comments No comments