Thanks, it worked. I was using the "+" sign instead of the "&". Thanks again!
"Sprinks" wrote:
> You can concatenate your results using the & operator, for example:
>
> =IIf("x"="x","T","F") & "," & IIf("x"="y","T","F") will display:
>
> T,F
>
> Hope that helps.
> Sprinks
>
> "APCinFla" wrote:
>
> > Is there a way to possibly combine the results of IIf statements, seperating
> > the results of the statements by commas in one text box. Basically I have
> > eight IIf statements that I am running and I am trying to get the results
> > listed together in one text box.
> >
> > Example: Result 1, Result 2, Result 3, Result 4, Result 5, Result 6, Result
> > 7, Result 8.
> >
> > I was able to get this to work only if all 8 IIf statements were true for
> > the record I am working on. If the record has at least one false IIf
> > statement then the entire box comes back with only a -1 in it. If the IIf
> > statement produces a false value I just want it to go on to the next
> > statement and just list all the results that are true.
> >
> > Is this possible? Should I be using something besides IIf statements?
> >
> > Thanks.
> >
|