WD2000: Conditional Alphanumeric Merge May Yield Incorrect Results (211621)
The information in this article applies to:
This article was previously published under Q211621 SYMPTOMS
A mail merge operation may yield incorrect results if you use a
conditional statement to evaluate alphanumeric data when the first
character of the data is numeric.
CAUSE
This behavior occurs because conditional statements (IF fields) evaluate only the first two characters of a numeric string.
WORKAROUND
To work around this behavior, modify the data so that each field begins
with a non-numeric character, and then modify the conditional field in the
main merge document to match the data. To do this, follow these steps:
- In the data document, add a character to the beginning of each data field that starts with a number.
You can use any character, such as a parenthesis (you can also add one to the end of the field, so that it's easier to read) or an ampersand (&). This makes the first character in the number field a character instead of a numeral.
Modified with parentheses:
---------------------------------
| Rec_Num |Name |Number |
---------------------------------
| 1 |John |(1AA) |
---------------------------------
| 2 |Bill |(1AB) |
---------------------------------
| 3 |Fred |(2AA) |
---------------------------------
| 4 |George |(ABC) |
---------------------------------
Modified with an ampersand:
-----------------------------------
| Rec_Num |Name |Number |
-----------------------------------
| 1 |John |&1AA |
-----------------------------------
| 2 |Bill |&1AB |
-----------------------------------
| 3 |Fred |&2AA |
-----------------------------------
| 4 |George |&ABC |
-----------------------------------
- In the main document, edit the test portion of the conditional field so that it matches the newly modified data. For example, if the data is surrounded by parentheses, modify the field to look like this:
{IF {MERGEFIELD number} = "(1A)" "This is true"}
If the data begins with an ampersand, modify the field to look like this:
{IF {MERGEFIELD number} = "&1A" "This is true"}
Modification Type: | Major | Last Reviewed: | 12/6/2000 |
---|
Keywords: | kbfield kbmerge kbprb KB211621 |
---|
|