Results 1 to 3 of 3

specialcells issues

Threaded View

  1. #1
    Registered User
    Join Date
    02-06-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    Excel 2007
    Posts
    46

    specialcells issues

    I seem to be having trouble with this line of code. Using the specialcells method deletes all the rows in the spreadsheet. This works most of the time but every now and again for large spreadsheets it doesn't work. I was wondering if any of you might have any suggestions?


    'formulas to combine multiple entries on payfile
        Rows("1:1").Select
        Selection.Insert Shift:=xlDown
        Range("D2:D" & LastRow).FormulaR1C1 = "=IF(RC[-2]=R[-1]C[-2],RC[-1]+R[-1]C,RC[-1])"
        Range("E2:E" & LastRow).FormulaR1C1 = "=IF(RC[-3]=R[1]C[-3],"" "",""x"")"
    
    
    'remove formulas
       Sheets("Payfile").Range("D2:D" & LastRow).Value = Sheets("Payfile").Range("D2:D" & LastRow).Value
       Sheets("Payfile").Range("E2:E" & LastRow).Value = Sheets("Payfile").Range("E2:E" & LastRow).Value
    
    LastRow = ActiveSheet.UsedRange.Row - 1 + ActiveSheet.UsedRange.Rows.Count
    'delete duplicates
     'Delete rows with blank cells
        
        Columns("E:E").Select
        Selection.Replace What:=" ", Replacement:="", LookAt:=xlPart, _
            SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
            ReplaceFormat:=False
    
    On Error Resume Next
        [E2:E65536].SpecialCells(xlCellTypeBlanks).EntireRow.Delete
        On Error GoTo 0
    Last edited by bobaftt; 07-07-2010 at 12:32 PM.

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