• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

Excel Drop Down Menu Question

OrbitzXT

New Member
Joined
Mar 22, 2007
Messages
1,969 (0.30/day)
Location
New York City
System Name AX-01
Processor Intel Core i5-2500K @3.7 GHz
Motherboard ASRock Z68 Extreme3 Gen3
Cooling Zalman 9700
Memory Kingston HyperX T1 Series 8GB DDR3 1600 MHZ
Video Card(s) GTX 590
Storage Intel X25-M
Display(s) 42" Samsung LED HDTV
Case Antec Twelve Hundred
Audio Device(s) HT | OMEGA STRIKER 7.1
Power Supply Kingwin 1000W
Software Windows 7 64-Bit
I'm toying around with a project for work. We're trying to make an Excel spreadsheet that has a list of parts that employees would sort of use to build an order form. It's coming along nicely and works fairly well with the touch screen tablet we have, but I had a question. At the moment, when you highlight a cell that has a drop down list of choice, a small box with a down triangle appears in the bottom right. You click that, then the list of items appears. Is there anyway I can make it so that when you click the cell the drop down menu appears? This would make working with the spreadsheet on the tablet many times easier.
 
Nightmare. You dont want "cell select" to cause a drop-down. I do understand that cell-click might be useful though. Can you imagine the same spreadsheet on your desktop, and as you move around with your cursor keys, these drop-downs keep opening, grabbing focus, and... and making you jump into them and needed to escape out? Imagine selecting multiple cells with the SHIFT or with the mouse, or indeed via touch? What then...

For the most important inputs, why not have a macro-button or VBA object that, when clicked, gives you a list?

Are you working in VBA? If no, and KISS, then to answer your question, you cant.
 
Nightmare. You dont want "cell select" to cause a drop-down. I do understand that cell-click might be useful though. Can you imagine the same spreadsheet on your desktop, and as you move around with your cursor keys, these drop-downs keep opening, grabbing focus, and... and making you jump into them and needed to escape out? Imagine selecting multiple cells with the SHIFT or with the mouse, or indeed via touch? What then...

For the most important inputs, why not have a macro-button or VBA object that, when clicked, gives you a list?

Are you working in VBA? If no, and KISS, then to answer your question, you cant.

This spreadsheet is being created specifically for use with a tablet PC. I don't think the tablet's scrolling will cause problems. I'd at least like to try it and see how bad it really is. My boss is having me create this and envisions it this way, so I at least want him to see it for himself and if it's no good we'll approach it a different way. So is cell select possible? And if so how?

I'm an Excel novice and don't know much about VBA, though I have begun googling it to see how I can make use of it for this little project.
 
You have to code in VBA to do this: make a cell select event do something... But I really do advise against it. Much better to program a button, either in VBA or as a macro button.

Sorry I can't help you with the VBA code, it has been a few years since I did any VBA programming.
 
The button idea seems interesting. Might you be able to point me in the direction of where to find the VBA code for that?
 
Back
Top