Switch format characteristics cell-by-cell?

  • Thread starter Thread starter Jonathan Ball
  • Start date Start date
J

Jonathan Ball

I want to do something like this:

IIf([table_a].addr1 <> [tableb].addr1, SwitchToBold([tablea].addr1),
[tablea].addr1)

Is there such a function or set of functions, e.g. switch to italics
or change the font entirely? I can't find it and am not entirely sure
where to look.

Thanks in advance.
 
Access doesn't have cells. Rather it has fields. Either way you can't do what
you want in a table or query. However you may be able to do it in a form or
report using Conditional Formatting. Press the F1 key while in Access and
type in "Conditional Formatting".
 
I want to do something like this:

IIf([table_a].addr1 <> [tableb].addr1, SwitchToBold([tablea].addr1),
[tablea].addr1)

Is there such a function or set of functions, e.g. switch to italics
or change the font entirely? I can't find it and am not entirely sure
where to look.

Thanks in advance.

Use a Form (table datasheets have very limited formatting and code potential),
and use Format... Conditional Formatting.

John W. Vinson [MVP]
 
I want to do something like this:
IIf([table_a].addr1 <> [tableb].addr1, SwitchToBold([tablea].addr1),
[tablea].addr1)
Is there such a function or set of functions, e.g. switch to italics
or change the font entirely? I can't find it and am not entirely sure
where to look.
Thanks in advance.

Use a Form (table datasheets have very limited formatting and code potential),
and use Format... Conditional Formatting.

John W. Vinson [MVP]

Thanks to you and to Jerry Whittle.
 

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

Back
Top