Hey Guys,
I have a combo box with entries that it pulls from a table.
Ie:
tblMonths
Month ________ Season
January ________ Summer
March _________ Autumn
November ______ Spring
December ______ Summer
Now in my form, when someone chooses January from my drop down list (the drop down list takes the values of tblMonths.Month), I have a text box that I want the Season to be displayed in - but I want it to pull the value from my tblMonths, as the data can change (months and seasons are just an example).
I could just use a set of nested if statements to say if it is equal to blah, display blah, but that's a bad way to do it!
I want it to say:
When the text box is January, pull the season that coresponds to January in tblMonths.
I'm sure there's a function or set of statements designed exactly for this, but I can't find them...

I have a combo box with entries that it pulls from a table.
Ie:
tblMonths
Month ________ Season
January ________ Summer
March _________ Autumn
November ______ Spring
December ______ Summer
Now in my form, when someone chooses January from my drop down list (the drop down list takes the values of tblMonths.Month), I have a text box that I want the Season to be displayed in - but I want it to pull the value from my tblMonths, as the data can change (months and seasons are just an example).
I could just use a set of nested if statements to say if it is equal to blah, display blah, but that's a bad way to do it!
I want it to say:
When the text box is January, pull the season that coresponds to January in tblMonths.
I'm sure there's a function or set of statements designed exactly for this, but I can't find them...