I have little to no programming ability so any advice (and details) is appreciated.
I have a field called PHLevel. And I want to click a button and based on the results in the PHLevel field open 1 of 3 forms (with just words on it).
So basically I want something like this
If PHLevel is < 7.2 Then
DoCmd.OpenForm (PHtoLow)
ElseIf PHLevel is >7.8 Then
DoCmd.OpenForm (PHtoHigh)
Elseif PHLevel is between 7.2 and 7.8 Then
DoCmd.OpenForm (HappyPH)
Is this possible if so what would I need to do.
Thanks,
Rick
I have a field called PHLevel. And I want to click a button and based on the results in the PHLevel field open 1 of 3 forms (with just words on it).
So basically I want something like this
If PHLevel is < 7.2 Then
DoCmd.OpenForm (PHtoLow)
ElseIf PHLevel is >7.8 Then
DoCmd.OpenForm (PHtoHigh)
Elseif PHLevel is between 7.2 and 7.8 Then
DoCmd.OpenForm (HappyPH)
Is this possible if so what would I need to do.
Thanks,
Rick