Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7574441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:26:14+00:00 2026-05-30T16:26:14+00:00

I have a problem trying to delete an entire row using the code as

  • 0

I have a problem trying to delete an entire row using the code as below:

Sub Macro1()
    Dim test1row As Long, test1 As Range, firstrowtodelete As Long

    test1row = 1

    Do 
        Set test1 = Sheets("Sheet1")l.Cells(test1row,1)

        If test1 <> "actest" Or test1 <> "dctest" Then
            firstrowtodelete = test1row
            Rows(test1row).Select
            Selection.Delete Shift:=xlUp
            Exit Do
        End If

        test1row = test1row + 1
    Loop
End Sub

The error is with Rows(test1row).Select. It deletes the row even if it is “actest” or “dctest”. If you know why do share with me! thanks! 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T16:26:15+00:00Added an answer on May 30, 2026 at 4:26 pm

    There are two problems with your code.

    The first problem is on this line:

    Set test1 = Sheets("Sheet1")l.Cells(test1row,1)
    

    It should be:

    Set test1 = Sheets("Sheet1").Cells(test1row, 1)
    

    And the other problem is here:

    If test1 <> "actest" Or test1 <> "dctest" Then
    

    It should be this:

    If test1 <> "actest" And test1 <> "dctest" Then
    

    Your If statement would always be true. Using the And operator will give you a true value only when the cell’s value isn’t “actest” and it isn’t “dctest” which is presumably the desired behavior.

    Here is the complete working code:

    Sub Macro1()
        Dim test1row As Long, test1 As Range, firstrowtodelete As Long
    
        test1row = 1
    
        Do
            Set test1 = Sheets("Sheet1").Cells(test1row, 1)
    
            If test1 <> "actest" And test1 <> "dctest" Then
                firstrowtodelete = test1row
                Rows(test1row).Select
                Selection.Delete Shift:=xlUp
                Exit Do
            End If
    
            test1row = test1row + 1
        Loop
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem when trying to execute this update statement (below) using C#
I have a problem when I'm trying to delete an image file. I always
I have a problem when trying to delete rows from my UITableView: The UITableView
I am trying to delete macros from C headers but I have problem with
Hey all, i have a problem with trying to get 2 forms to close
I have a problem I'm trying to solve involving interfaceing a C++ program with
I have run into a problem trying to modify a form I myself have
Ok I have this problem I'm trying to use Jquery to load a partial
Greetings, I have problem with errorPlacement, I'm trying to place the error message next
I have this problem I've been trying to tackle for a while. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.