chuckcoleman
Registered User.
- Local time
- Today, 12:51
- Joined
- Aug 20, 2010
- Messages
- 377
Hi, I have a Combo Box that has as it's Row Source only two choices:
1;"Spring Startup";2;"Winterize"
The width of the column widths are 0; 1.5, so you will only see Startup or Winterize
I have a Text Box called MonthNbr that has as it's control source: =IIf(DatePart("m",Date())<=7,1,2) Obviously that means if the month is less than or equal to July the number 1 is shown and if it's greater than 7 the number 2 is shown.
I want the Combo Box to default to show "Spring" if the Text Box MonthNbr is 1 and to show "Winterize" if the Text Box MonthNbr shows 2. I want the user to only click on the Combo Box if they want to change the displayed value.
I've researched this but haven't found an answer. Any ideas?
1;"Spring Startup";2;"Winterize"
The width of the column widths are 0; 1.5, so you will only see Startup or Winterize
I have a Text Box called MonthNbr that has as it's control source: =IIf(DatePart("m",Date())<=7,1,2) Obviously that means if the month is less than or equal to July the number 1 is shown and if it's greater than 7 the number 2 is shown.
I want the Combo Box to default to show "Spring" if the Text Box MonthNbr is 1 and to show "Winterize" if the Text Box MonthNbr shows 2. I want the user to only click on the Combo Box if they want to change the displayed value.
I've researched this but haven't found an answer. Any ideas?