Hello Everydody,
This is my first post, so I have to tell you I'm very happy I found you.
I have 5 (same time) opened workbooks.
I ask user (via VBA's inputbox) to select an area in worksheet "ws1" of workbook "wbx" (where 2<=x<=5) while the Active.Workbook is "wb1".
the code I use is
Code
dim myRange as Range
Set myRange = Application.InputBox(Prompt:="Please select ...", _
Title:="Area Selection", Type:=8)
this works fine, then I can use
to get the name of the worksheet where the users selected an area, but
I don't know how to get the name of the Workbook in which the users made it's selection?
Thanks in advance