Change font color in tables

D

dimpie

Can a font color be changed in the table depending on a condition.

For Eg,
If a table had numeric field, i could write a update query to identify the
results i would like to change the font color for. But how can i change the
font color.

IIF(FIELD1 > 30, change font color to red)

I can do this is the form too. But there is this one weird scenario that i
need this for.

Please help! Thanks
 
K

Ken Snell [MVP]

Tables do not have such properties for fields. You must use a form to do
what you seek.
 
J

John W. Vinson

Can a font color be changed in the table depending on a condition.

For Eg,
If a table had numeric field, i could write a update query to identify the
results i would like to change the font color for. But how can i change the
font color.

IIF(FIELD1 > 30, change font color to red)

I can do this is the form too. But there is this one weird scenario that i
need this for.

Please help! Thanks

You can do this on a Report (for printing) or a Form (for onscreen display),
using Format... Conditional Formatting; but you cannot in a table datasheet.
Just one of the many limitations of table datasheets, and reasons why they
should not be exposed to users.
 

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