In my Excel Spreadsheet I have a list of names.
George Washington
Abraham Lincoln
Albert Einstien
I am using an input box so that I can choose a name and then search for data associated to that particular name.
MySearch = Application.InputBox("Which person do you want to run records for?")
The macro then opens a seperate spreadsheet and looks for all of the data associated with the particular name I picked. (MySearch)
I have two questions.
1) How do I place MySearch info into cell "A11" on my spreadsheet? The macro works as I have it written. It performs the search and gets my data but I can not figure this part out.
2) Is there a better way to do this? ie some sort of box that displays the list of names where I could choose the person whose data I want to retrieve.
Thanks in advance for all of your assistance.
George Washington
Abraham Lincoln
Albert Einstien
I am using an input box so that I can choose a name and then search for data associated to that particular name.
MySearch = Application.InputBox("Which person do you want to run records for?")
The macro then opens a seperate spreadsheet and looks for all of the data associated with the particular name I picked. (MySearch)
I have two questions.
1) How do I place MySearch info into cell "A11" on my spreadsheet? The macro works as I have it written. It performs the search and gets my data but I can not figure this part out.
2) Is there a better way to do this? ie some sort of box that displays the list of names where I could choose the person whose data I want to retrieve.
Thanks in advance for all of your assistance.