Results 1 to 12 of 12

Create new worksheet, unmerge and enter value, remove rows meeting criteria

Threaded View

  1. #1
    Forum Contributor
    Join Date
    10-09-2012
    Location
    Adelaide, South Australia
    MS-Off Ver
    Excel 2010
    Posts
    135

    Create new worksheet, unmerge and enter value, remove rows meeting criteria

    Hello All,
    I am a newbee to the forum and would like some help creating a macro. I have gathered bits and pieces but what I have at the moment makes excel have a spaz attack and crash:P

    I would like to create a macro that copies an entire sheet (SCOR) and pastes the data in a new worksheet, this data is currently in a format that is not very user friendly so I would like to clean it up by 1) unmerging the merged cell and put value in all cells 2) Remove all rows that contain '#Break' in column C.

    Thankyou for your help

    this is what I currently have but it may not be useful:

    Sub Data_Dump()
    '
    ' Data_Dump Macro
    '
    
    '
        Sheets("SCOR").Select
        Cells.Select
        Selection.Copy
        Set ws = ThisWorkbook.Sheets.Add(ThisWorkbook.Sheets(1))
    ws.Activate
        Range("A1").Select
        ActiveSheet.Paste
        
        Dim rng As Range: Set rng = ActiveSheet.UsedRange
    Dim cell, cell_area As Range
    For Each cell In rng
        Select Case cell.MergeCells
            Case True
                Set cell_area = cell.MergeArea
                cell.MergeArea.UnMerge
                cell_area.Value = cell.Value
                Set cell_area = Nothing
        End Select
    Next cell
    
    
    End Sub
    Last edited by wacky_diva; 10-11-2012 at 07:21 PM.

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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