Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim l_wksSheet As Worksheet
Dim l_rngCells As Range
Dim cell As Range
Set l_wksSheet = ThisWorkbook.Sheets("NameOfSheet")
Set l_rngCells = l_wksSheet.UsedRange
For Each cell In l_rngCells
If cell.Value = "current" Then cell.EntireRow.Delete
Next cell
Set l_rngCells =nothing
Set l_wksSheet = Nothing
/code]
Just substitute [b]NameOfSheet[/b] with the name of the sheet you want to loop through
HTH
Cheers
Nikki