Thread: Delete a row
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Rhonda[_3_] Rhonda[_3_] is offline
external usenet poster
 
Posts: 17
Default Delete a row

Thank you very much!!! That's great!!


-----Original Message-----
Rhonda,

Use code like the following:

Dim RowNdx As Long
RowNdx = Application.InputBox(prompt:="Enter a row

number",
Type:=1)
If RowNdx 0 And RowNdx <= Rows.Count Then
Rows(RowNdx).Delete
End If


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Rhonda" wrote in

message
...
Hi,

I was wondering if anyone could provide me with a
function for a command button that when clicked, will
prompt the user for the row number they want to delete
and then delete it for them. Or if this is not

possible,
something similar would also be great!!

Thanks for your help!



.