How to show which fields have FilterOn?

ppataki

Registered User.
Local time
Yesterday, 22:46
Joined
Sep 5, 2008
Messages
267
Dear All,

I have a continuous form and somehow I would like to recolour/highlight those fields where a filter is applied
(sometimes there are filters in even 5-6 fields and it is very annoying when you forget which fields you already applied a filter in)

Any suggestions please?
Many thanks in advance ;)
 
What is the code that you are currently using to apply your filters?
 
No code, user right clicks on the desired field and chooses filter
This is done on multiple fields and I would like Access to somehow indicate on each field if filter is on
Thx!
 
You could put a unbound textbox in your forms footer and set its controlsource to:

=IIF(Form.FilterOn,Form.Filter,Null)

The you can atleast read what the current form filter is set at.

JR
 
Thank you very much, that is a great solution!
 

Users who are viewing this thread

Back
Top Bottom