View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Juan Pablo González Juan Pablo González is offline
external usenet poster
 
Posts: 226
Default Accessing selected cell from modal dialog

You mean, to let the user choose a cell ? if so, use the RefEdit control, if
you mean, look at the value of the active cell, use something like

Dim MyValue As Variant

MyValue = ActiveCell.Value

--
Regards,

Juan Pablo González

"Jim McLeod" wrote in message
...
Dear group,

How is it possible to access a selected cell from a modal dialog?

Kind regards,

Jim...