Results 1 to 4 of 4

Thread: Unmerge Cells and Fill with Duplicate Values

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Senior Member
    Join Date
    Jun 2012
    Posts
    337
    Rep Power
    14
    or
    Code:
    Sub snb()
        Cells(1).CurrentRegion.unmerge
        For Each ar In Cells(1).CurrentRegion.Columns(1).SpecialCells(4).Areas
            ar.Value = ar.Cells(1).Offset(-1)
            ar.Offset(, 1) = ar.Offset(, 1).Cells(1).Offset(-1)
        Next
    End Sub

  2. #2
    Senior Member LalitPandey87's Avatar
    Join Date
    Sep 2011
    Posts
    222
    Rep Power
    15
    Hi Prince,

    Below is the link where you can find the same as you want.

    Fill Merge Cell Hierarchy | Power Desk

    There i have uploaded an excel file with sample data with two different method. Use what is helpful to you.

Similar Threads

  1. Replies: 6
    Last Post: 05-16-2013, 09:56 AM
  2. Replies: 7
    Last Post: 04-22-2013, 01:41 PM
  3. Subtraction Of Series Of Cells' / Array Values
    By PcMax in forum Excel Help
    Replies: 6
    Last Post: 10-26-2012, 11:55 PM
  4. Find duplicate values
    By excel_learner in forum Excel Help
    Replies: 4
    Last Post: 10-24-2011, 12:10 PM
  5. Unique Large Values From Duplicate List
    By S M C in forum Excel and VBA Tips and Tricks
    Replies: 0
    Last Post: 10-04-2011, 02:17 AM

Posting Permissions

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