Conditional format duplicates

C

Caroline

Hi,
I have a form (table) in which one field contains duplicates (case numbers).
I would like ot highlight those in the form, like in Excel, with conditional
formatting.
Is this possible and if so, how?
Thank you,
Caroline
 
J

John W. Vinson

Hi,
I have a form (table) in which one field contains duplicates (case numbers).
I would like ot highlight those in the form, like in Excel, with conditional
formatting.
Is this possible and if so, how?
Thank you,
Caroline

One way (untested) which might work is to include a calculated field in a
query upon which the form is based:

=DCount("*","[tablename]", "[Case Number] = " & [Case Number])

This value will be the count of matches (1 if this is the unique record for
the case).

You could use a condition on this field in the Conditional Format expression.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top