R
Richard Stricker
Hi, I'm trying to keep my form uncluttered by only showing appropriate
fields when needed.
Some "sales" are in California and then I want to display a field "CA tax".
I can make that field visible or not by using a checkbox....
But when I go to the next record, the CA_tax field (and label) are visible
even though the checkbox (of that record) is not checked.
Any help with this concept would be very appreciated.
Richard Stricker
'the checkbox
If Me!Calif_tax.Value = True Then
'show CA tax only when calif tax is true..
Me!Label24.Visible = True
Me!CA_tax.Visible = True
Else
'hide CA tax
Me!Label24.Visible = False
Me!CA_tax.Visible = False
End If
fields when needed.
Some "sales" are in California and then I want to display a field "CA tax".
I can make that field visible or not by using a checkbox....
But when I go to the next record, the CA_tax field (and label) are visible
even though the checkbox (of that record) is not checked.
Any help with this concept would be very appreciated.
Richard Stricker
'the checkbox
If Me!Calif_tax.Value = True Then
'show CA tax only when calif tax is true..
Me!Label24.Visible = True
Me!CA_tax.Visible = True
Else
'hide CA tax
Me!Label24.Visible = False
Me!CA_tax.Visible = False
End If