conditional formatting of a form

N

Newbie_Sashi

Hi,
I am attempting to format a continuous form with multiple conditions.
I am using an unbound text field and thereby formatting the back ground of
the entire form.
My condition works like, if currency = USD and amount > 1000 then color = red.
I have tried using the conditional format, but if i give these as 2
conditions, access uses the OR condition i.e the system reads it as currency
= USD or Amount > 1000 whereas i need the system to use the AND condition.
Pls help.

Newbie
 
D

Dirk Goldgar

Newbie_Sashi said:
Hi,
I am attempting to format a continuous form with multiple conditions.
I am using an unbound text field and thereby formatting the back ground of
the entire form.
My condition works like, if currency = USD and amount > 1000 then color =
red.
I have tried using the conditional format, but if i give these as 2
conditions, access uses the OR condition i.e the system reads it as
currency
= USD or Amount > 1000 whereas i need the system to use the AND condition.
Pls help.


Try a single condition with an expression similar to this:

([currency] = "USD") And ([amount] > 1000)
 

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