Filter (1 Viewer)

Mark.Innes

Registered User.
Local time
Today, 08:44
Joined
Dec 10, 2003
Messages
15
I have an expression on a report that works out a percentage between 2 fields. The expression is just on the report and not on a query so is it possible to filter out information based on this % expression?
 
R

Rich

Guest
You can hide fields based on a condition. Is that what you want to do?
 

Mark.Innes

Registered User.
Local time
Today, 08:44
Joined
Dec 10, 2003
Messages
15
Yes, that would certainly help
 
R

Rich

Guest
In the detail On_Format event
If Me.MyControl=Something Then
Me.SomeOtherControl.Visible=False
Else
Me.SomeOtherControl.Visible=True
End If
 

Users who are viewing this thread

Top Bottom