+ Reply to Thread
Results 1 to 2 of 2

Unmerge cells and place contents of first cell in all cells

  1. #1
    Amanda
    Guest

    Unmerge cells and place contents of first cell in all cells

    I have several merged cells in a column. I would like to take merge cells
    C2, C3, C4, C5 and C6 and unmerge those cells AND take the contents that is
    in cell C2 and place in the remaining four cells. I have several sets of
    these and the merged cells all contain different info.

    Can I use a Macro for this?

  2. #2
    PCLIVE
    Guest

    Re: Unmerge cells and place contents of first cell in all cells

    This should help get your started.

    Sub Macro1()
    Range("C2:C6").Select
    With Selection
    .MergeCells = False
    End With

    Range("C2").Copy
    Range("C3:C6").Select
    ActiveSheet.Paste
    End Sub

    Paul


    "Amanda" <[email protected]> wrote in message
    news:[email protected]...
    >I have several merged cells in a column. I would like to take merge cells
    > C2, C3, C4, C5 and C6 and unmerge those cells AND take the contents that
    > is
    > in cell C2 and place in the remaining four cells. I have several sets of
    > these and the merged cells all contain different info.
    >
    > Can I use a Macro for this?




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1