• Default split cell in a Table (Word)

    Author
    Topic
    #506096

    For various reasons, I often have to split cells in a table. For the most part, I want to keep one column, but multiple rows. The default is for two columns, no matter what the arrangement is in the table.

    Is there a way to change the default “Split Cell” dialog box?

    Viewing 0 reply threads
    Author
    Replies
    • #1569618

      You can’t change the defaults. You could, however, use a macro to perform a row split:

      Code:
      Sub Demo()
      With Selection
        If .Information(wdWithInTable) = True Then
          .Cells(1).Split Numrows:=InputBox("Number of rows?"), NumColumns:=1
        End If
      End With
      End Sub

      You could even assign such a macro to a shortcut key combination.

      Cheers,
      Paul Edstein
      [Fmr MS MVP - Word]

    Viewing 0 reply threads
    Reply To: Default split cell in a Table (Word)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: