View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Archie Archie is offline
external usenet poster
 
Posts: 10
Default 1st cell of a row

I want the data that is in the 1st cell of a row to be a variable, to use in
a message box. Ok if the user has selected say, A17

Dim Lname, Msg, Style, Title, Help, Ctxt, Response, MyString
Lname = Selection

Msg = "Do you want to delete" + Lname + " ?" ' Define message.

But if he's selected the whole row or say A17 to E17, this doesnt work.

I can t seem to get info() or row() to work ?

thanks if you can help ?