+ Reply to Thread
Results 1 to 5 of 5

range selection

  1. #1
    Registered User
    Join Date
    10-09-2006
    Posts
    3

    range selection

    I have the following code, but it is not working correctly. The code is only selecting a cell in column A, not column A through AD. If I take out .cells(index+1,1) and just use Range("a:ad").select, it works properly, but then I can't index through the data. Any ideas?

    Please Login or Register  to view this content.

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524
    What's your code going to perform when working properly?

  3. #3
    Registered User
    Join Date
    10-09-2006
    Posts
    3
    I have say 20,000 rows of data, and 50 columns. I want to run through each row, and if range("f2").cells(index,1)="IMM", then delete columns a:ad, for the corresponding row, NOT all columns for the corresponding row.

  4. #4
    Registered User
    Join Date
    10-09-2006
    Posts
    3
    Anyone??? I can't figure this out.

  5. #5
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Smile

    I don't understand what you are trying to do, if you were using ActiveCell maybe, but your not, to me your code deletes columns A to AD on the first loop
    so there is no way for it to work a second time

    Maybe this could start you out

    Sub Keep_IMM_Rows()
    Dim lastrow As Long, rw As Long
    lastrow = ActiveSheet.UsedRange.Rows.Count + 1
    For rw = lastrow To 2 Step -1
    If (Cells(rw, 6).Value) <> "IMM" Then Rows(rw).Delete

    Next rw
    End Sub


    this seems to be what you are asking for but it would take a long time for the macro to perform

    Sub Button1_Click()
    Application.ScreenUpdating = False
    Range("F2").Activate
    Do Until ActiveCell = ""
    If ActiveCell <> "IMM" Then
    ActiveCell.Range("A1:AD1").Delete
    ActiveCell.Offset(-1, 0).Range("A1").Activate

    End If
    ActiveCell.Offset(1, 0).Range("A1").Activate
    Loop

    End Sub

+ 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