Tony has attended:
Excel VBA Intro Intermediate course
Excel VBA Advanced course
Access Intermediate course
Access Advanced course
VBA Row Function
How do you delete rows using a variable.
Rows("1:5").delete
works but how do you use a variable name
RE: VBA Row Function
Hi Tony
Thanks for your question
The following code prompts the user to enter a start and finish row and then cocatenates them into a string that is used in the delete method
Sub RowDeleter()
Dim intStart As Integer
Dim intFinish As Integer
Dim strDelete As String
intStart = InputBox("Enter Start Row")
intFinish = InputBox("Enter Finish Row")
strDelete = intStart & ":" & intFinish
Rows(strDelete).Delete
End Sub
Regards
Stephen