Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft Excel - Combo Boxes Saving data 1

Status
Not open for further replies.

bluebilly

Technical User
Nov 11, 2002
48
AU
I have several lists in an Excel Spreadsheet that I can select records from using combo boxes. How can I save the results of my selections in a separate worksheet.
For instance if I have a list of names in say Worksheet 1 in one Combo box & a list of Activities in the same worksheet in another Combo box - I want to select a single name & a single activity and then save these selections in a separate worksheet. I don't use VB - so an explanation without the use of code woule be very much appreciated.

Thank you

bluebilly
 
Code:
Range("StartHere").End(xlConstant)

replace xlConstant with one opf the following to set the direction of the End:
Code:
xlToLeft
xlToRight
xlUp
xlDown

Replace Range("StartHere") with whatever cell you're starting from

Cheers
Nikki
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top