I'm developing a mail merge document. I have a single field 'Controls' that contains multiple values. I need to display a second field if this first field (list of values) contains a specific value, and I need to do so without descending into the list with a TableStart command.
Using { MERGEFIELD List:Controls.Value }
correctly displays all values in the field. Result:
value1
value2
value3
I've tried using {MERGEFIELD List:Controls.Value}
but this only yields the first value in the list. I've tried using comparisons with Wildcards to match as well ({ IF { MERGEFIELD Controls.Value } = "*myValue" { MERGEFIELD Response } "blah" }
This also does not work. Is there any way to compare against a second or third value?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…