So do both tables print out on the document? From your reply it doesn't
sound like it, but I guess I'm confused as to where table B would hang out
until MERGEFIELD = "N".
> Well, you wouldn't delete one table and add another, so much as use an IF
> field to decide whether to use one chunk of text+fields+tables+anything else
[quoted text clipped - 17 lines]
> >
> > Any ideas?
Peter Jamieson - 10 Aug 2004 20:52 GMT
> So do both tables print out on the document?
No.
> From your reply it doesn't
> sound like it, but I guess I'm confused as to where table B would hang out
> until MERGEFIELD = "N".
Think of it like this. If you have
before{ IF { MERGEFIELD X } = "Y" "A" "B" }after
then in your output, if X is "Y" you will see
beforeAafter
(B isn't in the output)
and if X is not "Y" you will see
beforeBafter.
(A isn't in the output)
All you are really doing is putting a whole table instead of A and another
one instead of B. Generally speaking, any fields inside the table that is
displayed will be evaluated. However, do not assume that fields in B will
not be evaluated just because the results are thrown away - some field types
such as SEQ may in fact be executed. I don't know why.

Signature
Peter Jamieson
> So do both tables print out on the document? From your reply it doesn't
> sound like it, but I guess I'm confused as to where table B would hang out
[quoted text clipped - 21 lines]
> > >
> > > Any ideas?