ziad alsayed
Well-known Member
- Joined
- Jul 17, 2010
- Messages
- 665
dear all
i am trying use the dialog box "find" to find the Word "TOTAL" in column G, so after finding it i will press Find all and all cells with the Word "Total" will be select, so now i will loop through each cell and delete the entire row completly.
i tried to use the recording but it didn't work. i succeed to launch the find dialog box but don't know what to do after .
below is what i found
appreciate any help.
i am trying use the dialog box "find" to find the Word "TOTAL" in column G, so after finding it i will press Find all and all cells with the Word "Total" will be select, so now i will loop through each cell and delete the entire row completly.
i tried to use the recording but it didn't work. i succeed to launch the find dialog box but don't know what to do after .
below is what i found
Code:
Sub RemoveTotal()
Columns("G:G").Select
Application.Dialogs(xlDialogFormulaFind).Show
End Sub
appreciate any help.