I expected things to be a bit more structured than that, but anyway ...
1. Right click any Toolbar and check Control ToolBox.
2. In the Control Toolbox click the Design icon (top left).
3. Right click your combo box and choose View Code. You should get something like:
Code:
Private Sub ComboBox1_Change()
End Sub
4. Change it so that it looks like this:
Code:
Private Sub ComboBox1_Change()
Select Case ComboBox1.Value
Case "Jan": Call Jan
Case "Feb": Call Feb
End Select
End Sub
5. Press Alt+F11 to return to your worksheet and click the Design icon again to exit Design mode.
I will leave you to add calls to the macros for the remaining months to the Select Case construct.
This message was edited by Andrew Poulsom on 2002-11-12 10:31