Link to home
Start Free TrialLog in
Avatar of f19l
f19l

asked on

Dropdown box coding

Hello,

I am currently designing a spreadsheet that has a number of controls attached to it including a dropdown box, which will display various dates of my choice. I am not sure how I would write VB coding for this so any assistance would be welcome.

Thanks,

f19l
Avatar of Jorge Paulino
Jorge Paulino
Flag of Portugal image

Would you use an userform or place the dropdown on the worksheet ?

Also you want to know how to fill the dropdown ?
Avatar of f19l
f19l

ASKER

The dropdown box is located on a worksheet and I want to use a pres-set range of dates that are located in another part of the workbook. In other words the dates in the dropdown box will be fixed and never change.
ASKER CERTIFIED SOLUTION
Avatar of Jorge Paulino
Jorge Paulino
Flag of Portugal image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of f19l

ASKER

It looks like you sent only one file but it seems to contain the dropdown box arrangement that I am interested in. However, when I use the VB editor there is nothing there. In the Script editor there is coding but I do not understand it.
You didn't look to the first option. Check on B1. The advantage on this is that you can use in a list on all cells.

The second option (the dropdown) are using only formulas (not VBA). You can right click on the dropdown, select format and then in the control tab you can choose the inputrange (the dates) and the cell link. In the cell link, that is set it to C10 will display the position of the selected on the list.Finally in the B10 I use the formula =Index() to get the value from the list.

Hope I was clear
Avatar of f19l

ASKER

Okay, I see what you have done. The first option certainly looks like the better of the lot. I tried to replicate what you did on my spreadsheet but I could not. Could you let me know how?
Ok,

Select the range you want to add the dropdowns, go to menu Data - validation and choose "list". Then in the source select your list.

The only "problem" is that the list must be in the same worksheet.
Avatar of f19l

ASKER

Ok, I did that and it all works well. However, I have realized that there might be a problem, how do I identify which date has been selected so that it can be used when I run the rest of the VB code? Would it be better to use one of the other options?
Can you show the code you have ? There's always a solution.
Avatar of f19l

ASKER

It is not complete yet but basically want I would like is that once the user has selected the relevant date he will then click a VB macro button that will identify what date has been selected and then place in it a another cell in the spreadsheet so that it can then be used for calculation purposes.
Check this example:
Now with the file :)
example-2.xls
Avatar of f19l

ASKER

I do not think this spreadsheet gives me quite what I am looking for. Ideally, using the first option in the prior spreadsheet you sent me, there would be just one cell that would contain the dropdown box listing all specified dates. Once a date had been selected and the relevant macro button clicked the VB code would identify what the date was and place it in another cell.
Avatar of f19l

ASKER

I have just been looking at the second option and I think that may solve my problem. The only issue is when I select the dropdown box from the control toolbar and select format I do not have option to select the input range. Could you let me know how you created it on your spreadsheet?
Avatar of f19l

ASKER

I think I have managed to solve the problem! Thanks for your help.
Ok, i'm finishing the sample I will upload asap
Ok, thanks for the grade!

Here's another example
example-3.xls