+ Reply to Thread
Results 1 to 2 of 2

Apply Criteria Based Row Macro in Multiple Sheet

  1. #1
    Registered User
    Join Date
    02-20-2008
    Posts
    28

    Apply Criteria Based Row Macro in Multiple Sheet

    Hi,

    I have a macro which is working for each sheet at a time but I want to use the same for all the sheets. This macro is used for deleteing blank rows . All the sheets have date as the name. Ex: 12.07.08 like wise....


    Sub DeleteRow()

    Dim c As Range
    Dim SrchRng

    Set SrchRng = ActiveSheet.Range("d1", ActiveSheet.Range("d65536").End(xlUp))
    Do
    Set c = SrchRng.Find("2", LookIn:=xlValues)
    If Not c Is Nothing Then c.EntireRow.Delete
    Loop While Not c Is Nothing
    ActiveSheet.Previous.Select
    End Sub
    Last edited by liarliar; 07-07-2008 at 05:38 AM.

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Please Edit with Code Tags
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ 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