VBA macro that this will be able to automatically search and delete row

HELIWTIS

New Member
Joined
Jul 26, 2022
Messages
4
Office Version
  1. 2019
Platform
  1. Windows
1658820321897.png

Hello everyone

I want your help.
I try to make a VBA macro that this will be able to automatically search for the word TRD in the column and check from column E if the total time is less than 00:03:00 then delete the entire row where the specific TRD is located.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Maybe:
VBA Code:
Option Explicit
Sub Test()
Dim lr&, i&, rng
Application.ScreenUpdating = False
On Error Resume Next
lr = Cells(Rows.Count, "B").End(xlUp).Row
rng = Range("B2:E" & lr).Value2
For i = 1 To lr - 1
    If rng(i, 1) = "TRD" And rng(i, 4) < TimeValue("00:03:00") Then rng(i, 1) = "#N/A"
Next
Range("B2:E" & lr).Value = rng
Range("B2:B" & lr).SpecialCells(xlCellTypeConstants, xlErrors).EntireRow.Delete
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,213,536
Messages
6,114,211
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top