View Single Post
 
Old 03-20-2013, 05:27 AM
Nccadm Nccadm is offline Windows XP Office 2003
Novice
 
Join Date: Mar 2013
Posts: 2
Nccadm is on a distinguished road
Question Nested if field that contains a fill-in field is not prompting for fill-in info

Hi

I've created a nested if then else field. (The else option of the first if field contains the second if field.) This allows me three possible return results, and that works. Two of the possible return results contain a fill-in field. When those results are returned, the fill-in field just contains the default; the user is not prompted to enter any text.

Perhaps this is never going to work and I need to find a different way of doing it, or perhaps I need to make a change to the code. I would be grateful if someone could help.

Here is the code:

{ IF
{ MERGEFIELD PERM_or_TEMP} = “T”
" This is a temporary appointment. The reason for this temporary employment is due to { FILLIN "Enter the reason for it being a temporary contract" \d "it being a temporary contract" }."
{ IF
{ MERGEFIELD PERM_or_TEMP } = “P”
"This is a permanent post."
" This appointment has an expected duration of { FILLIN "Type in the expected duration of the contract" \d "eg 3 months" }."
}
}
Reply With Quote