Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 





Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Microsoft Support > Microsoft Office support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read

Microsoft Office support MS Office support forum

Reply
 
Thread Tools
Old 07-24-2008, 12:25 PM   #1 (permalink)
Registered User
 
Join Date: Jul 2008
Posts: 4
OS: Windows XP Pro


HELP macro to Delete Row based on two cells

I am trying to write some code that will compare two cells on a row and if they match then it will delete the row.

Column A-has the number 1, 2, 3, 4, or 5 entered
Column B-has either a date or is blank

I need the macro to look at Column A and Column B and for example if the cell A2 has a 3, 4, or 5 and B2 is blank the macro will delete that row.

The spreadsheet will vary on how many rows it contains. It can contain up to 5,000 rows and the macro would need to go through all the rows.

Any help would be greatly appreciated. Thanks
randolphoralph is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 07-24-2008, 12:49 PM   #2 (permalink)
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
 
Glaswegian's Avatar
 
Join Date: Sep 2005
Location: Glasgow
Posts: 21,371
OS: Win XP Pro SP3

My System

Blog Entries: 10
Send a message via MSN to Glaswegian
Re: HELP macro to Delete Row based on two cells

Hi and welcome to TSF

See if this works for you.
Code:
Sub deletedups()
Dim lRow As Long
Dim i As Long
Dim myRng As Range

Set myRng = Sheets("Sheet1").Range("A1:A5000")

    For lRow = myRng.Rows.Count To 2 Step -1
        If Cells(lRow, 1).Value = 3 Or Cells(lRow, 1).Value = 4 Or Cells(lRow, 1).Value = 5 Then
            If Cells(lRow, 2).Value = "" Then
                Cells(lRow, 1).EntireRow.Delete
            End If
        End If
    Next lRow
End Sub
Adjust sheet names and ranges to suit.
__________________
Iain - Defender of the Haggis and all things Scottish.
I don't help by PM - post in the Forums.



Ad-Aware::SpywareBlaster::SpyBot::SpywareGuard::SnoopFree::AVG Free::HOSTS File::HijackThis::Donate::5 Steps For Infected PCs
Glaswegian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 07-24-2008, 01:17 PM   #3 (permalink)
Registered User
 
Join Date: Jul 2008
Posts: 4
OS: Windows XP Pro


Re: HELP macro to Delete Row based on two cells

Well I figured out why the previous to code examples were not working I have included a correction as to what I am needing.



I am trying to write some code that will compare two cells on a row and if they match then it will delete the row.

Column A-has the number 1, 2, 3, 4, or 5 entered
Column B-has either a date or is blank

I need the macro to look at Column A and Column B and for example if the cell A2 has a 3, 4, or 5 and B2 has a date the macro will delete that row.
The spreadsheet will vary on how many rows it contains. It can contain up to 5,000 rows and the macro would need to go through all the rows.
Any help would be greatly appreciated. Thanks

Last edited by randolphoralph : 07-24-2008 at 01:22 PM.
randolphoralph is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 07-24-2008, 02:02 PM   #4 (permalink)
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
 
Glaswegian's Avatar
 
Join Date: Sep 2005
Location: Glasgow
Posts: 21,371
OS: Win XP Pro SP3

My System

Blog Entries: 10
Send a message via MSN to Glaswegian
Re: HELP macro to Delete Row based on two cells

Hi

I'm a bit confused here - which way do you want this to work?
Quote:
Column A-has the number 1, 2, 3, 4, or 5 entered
Column B-has either a date or is blank
or
Quote:
I need the macro to look at Column A and Column B and for example if the cell A2 has a 3, 4, or 5 and B2 has a date the macro will delete that row.
Also, when you say "date" how is the date formatted? Is it a true date? Is it any date or a specific date?

Please try and be precise - it will help you get a more useful answer.
__________________
Iain - Defender of the Haggis and all things Scottish.
I don't help by PM - post in the Forums.



Ad-Aware::SpywareBlaster::SpyBot::SpywareGuard::SnoopFree::AVG Free::HOSTS File::HijackThis::Donate::5 Steps For Infected PCs
Glaswegian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 07-24-2008, 04:20 PM   #5 (permalink)
Registered User
 
Join Date: May 2008
Location: Baltimore, Maryland
Posts: 97
OS: Windows XP SP3


Re: HELP macro to Delete Row based on two cells

It appears to me that if column B contains only dates and blank cells, and the original poster wants to delete rows where the column A cell has a value between 3 and 5 and the column B cell is not blank, then if you take this line from the code Glaswegian posted above:

If Cells(lRow, 2).Value = "" Then

and change it to:

If Cells(lRow, 2).Value > "" Then

then it should work.

Now if for some reason you wanted to check that the column B cell really was a date, you might write something like:

If VarType(Cells(lRow, 2).Value) = vbDate Then
David M58 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -7. The time now is 10:21 PM.



Copyright 2001 - 2008, Tech Support Forum

Search Engine Friendly URLs by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82