Deleting a User Input Row
I set up a InputBox to capture the ROW that the user would
like to Delete, If Input = 6 then ClearContents of the
row, etc. I started like this:
Dim RName as Interger
RName=InputBox("Enter Row to be deleted", "Row Number")
How do I use the "RName" to select and delete the entire
row?
I used the RName like this:
If RName = 6 Then
|