Hi all!
I have a text box that calculates a child's age and another text box that states whether that child needs a carseat or booster seat.
What I want is the text box for carseat to automatically calculate based on the number in the Age text box.
Normally I use something like the below in other programs but am at a loss as to how to incorporate this into an Access 2000 form.
CASE
IF [Age] = 1 THEN [Car Seat] = “Carseat”
IF [Age] = 2 THEN [Car Seat] = “Carseat”
IF [Age] = 3 THEN [Car Seat] = “Carseat”
IF [Age] = 4 THEN [Car Seat] = “Carseat”
IF [Age] = 5 THEN [Car Seat] = “Booster”
IF [Age] = 6 THEN [Car Seat] = “Booster”
IF [Age] = 7 THEN [Car Seat] = “Booster”
IF [Age] = 8 THEN [Car Seat] = “Booster”
ELSE "None"
Any help is appreaciated.
Thanks
Kathie
I have a text box that calculates a child's age and another text box that states whether that child needs a carseat or booster seat.
What I want is the text box for carseat to automatically calculate based on the number in the Age text box.
Normally I use something like the below in other programs but am at a loss as to how to incorporate this into an Access 2000 form.
CASE
IF [Age] = 1 THEN [Car Seat] = “Carseat”
IF [Age] = 2 THEN [Car Seat] = “Carseat”
IF [Age] = 3 THEN [Car Seat] = “Carseat”
IF [Age] = 4 THEN [Car Seat] = “Carseat”
IF [Age] = 5 THEN [Car Seat] = “Booster”
IF [Age] = 6 THEN [Car Seat] = “Booster”
IF [Age] = 7 THEN [Car Seat] = “Booster”
IF [Age] = 8 THEN [Car Seat] = “Booster”
ELSE "None"
Any help is appreaciated.
Thanks
Kathie