I thought this was going to be easy but...
so I have a form with this checkbox named "A", source..let's say A.
Now, let's say there's a report with a label captioned as "A" (name is "LabelA")
I want "A" to show up in the report when checkbox "A" is checked. (meaning value is true on a table)
I tried to use something like this but getting this error: "microsoft access can't find the field "A" referred to in your expression"
I put this on the report's "On active" event:
if me.A is True then
LabelA.visible = true
else
LabelA.visible = false
end if
the report's source table is the same table as the form...
so I have a form with this checkbox named "A", source..let's say A.
Now, let's say there's a report with a label captioned as "A" (name is "LabelA")
I want "A" to show up in the report when checkbox "A" is checked. (meaning value is true on a table)
I tried to use something like this but getting this error: "microsoft access can't find the field "A" referred to in your expression"
I put this on the report's "On active" event:
if me.A is True then
LabelA.visible = true
else
LabelA.visible = false
end if
the report's source table is the same table as the form...