Hello MisterrMr,
Welcome to the Forum!
This macro allows you to delete rows on any worksheet in the workbook . It uses the search value you supply. This can be from a cell or an expression you supply to the macro. This can not be used as a worksheet formula (UDF). It can only be run in VBA.
[b]Example of Using the Macro[/code]
[/code]
Sub TestDeleteRows()
CustomDeleteRows Worksheets("Sheet1").Range("A1"), Worksheets("Sheet2").Range("A1"), False
End Sub
[/code]
Adding the Macro
1. Copy the macro above pressing the keys CTRL+C
2. Open your workbook
3. Press the keys ALT+F11 to open the Visual Basic Editor
4. Press the keys ALT+I to activate the Insert menu
5. Press M to insert a Standard Module
6. Paste the code by pressing the keys CTRL+V
7. Make any custom changes to the macro if needed at this time.
8. Save the Macro by pressing the keys CTRL+S
9. Press the keys ALT+Q to exit the Editor, and return to Excel.
Bookmarks