Conditional Formatting Question

  • Thread starter Thread starter Kim Wright
  • Start date Start date
K

Kim Wright

Condition 1, Expression is [Office]="No" & [Status]="On"
Can this Expression be entered as one Condition as I have already used the 2
others,
Thanks, Kim
 
You just have to drop the ampersand! The ampersand is used by Access to
concatenate strings!

Expression is [Office]="No" And [Status]="On"
 
Thanks how can I code this in Conditional Format
=0 and [tbAdditionChargeAmount] has data in it
Thanks Bob

Kim Wright said:
Thanks Missinglinq worked just great.....Kim

missinglinq via AccessMonster.com said:
You just have to drop the ampersand! The ampersand is used by Access to
concatenate strings!

Expression is [Office]="No" And [Status]="On"
 
"=0 and [tbAdditionChargeAmount] has data in it"

I think you need to explain that more clearly.
 
Hi missinglinq
The Conditional Format is to go into TextBoxA
TextBoxA has a value of "0" , TextBoxB has some data in it (Text)
Thank You, Kim
 
Hey, Kim! Once again, we use

Expression Is

then

[TextBoxA]="0" And Not IsNull([TextBoxB])

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com
 

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