P peter.jakopic Aug 1, 2006 #1 I would like to prompt user to select specific point from chart in the middle of macro execution. Is this posible and how?
I would like to prompt user to select specific point from chart in the middle of macro execution. Is this posible and how?
M mpeplow Aug 1, 2006 #2 Create a form an run with vbmodeless option this will let the use click on the excel chart when the form is open. then just refence the activecell
Create a form an run with vbmodeless option this will let the use click on the excel chart when the form is open. then just refence the activecell
M mpeplow Aug 1, 2006 #3 Create a form an run with vbmodeless option this will let the use click on the excel chart when the form is open. then just refence the activecell
Create a form an run with vbmodeless option this will let the use click on the excel chart when the form is open. then just refence the activecell
N NickHK Aug 2, 2006 #4 If it is a cell on the WS, then you could use an Application.Inputbox(Type:=8) . NickHK