View Single Post
  #2  
Old July 25th, 2007, 12:46 AM posted to microsoft.public.access.reports
Armen Stein
external usenet poster
 
Posts: 507
Default Set value of a text box conditionally

On Tue, 24 Jul 2007 14:52:33 -0700, "J. Cairn"
wrote:

I have two text boxes on a report. One is bound to a field in a table.
The other has a formula that combines the values from two other table
fields.

If there is a particular value in the bound field, I want the unbound
text box to display a particular text string, instead of the string
that it now displays as a result of the formula.

How do I do that? Thanks.


You can use an IIF (Immediate If), something like:

=IIF([boundcontrolname]="MySpecialValue", "My Particular String",
[insertoriginalformulahere])

In English this means:

If the bound control equals a particular value,
show a particular string
otherwise
show the results of a formula


Armen Stein
Microsoft Access MVP
www.JStreetTech.com