I'm trying to delete certain rows from the table using 'Clear' button, and the delete part of the code would be something like below:
For i = lngUsdRng To 2 Step -1 'lngUsdRng - is the last row used in my table
Rows(i).EntireRow.Delete
Next
This code deletes the rows as...