View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Control on Sheet - Drop Down 1

What kind of dropdown

Data=Validation

res = Range("B9").Value
if the validation is applied to B9

Control Toolbox Toolbar

res = Activesheet.Combobox1.Value

Dropdown from the Forms Toolbar

With Activesheet.DropDowns("Drop Down 1")
res = .List(.Listindex)
End With


msgbox res

--
Regards,
Tom Ogilvy

"Arturo" wrote in message
...
Hello,

I have named range linked to a drop down in a sheet.
Am having trouble finding the correct syntax to pull the string selected
from the drop down. Once I have that I am good to go.

Thanks,
Arturo