View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] dpatwary@gmail.com is offline
external usenet poster
 
Posts: 6
Default How do I check the number of rows selected

Hi,

My sheet has about 30 rows. I want the user to select only one row and
that row gets copied to a new sheet.

The Code to let the user select the row is

Set rng = Application.InputBox(prompt:="Select Column to Work on",
Type:=8)
rng.Select

How do I make sure the sure only one row is selected?

If more than one row is selected I need to display an error message.

Thanks