Hello everyone,
I have a question about if statements with xml. I need to ensure certain fields have a particular value, if this is true I want to display a large amount of text. Let me give an example below:
if fld_Country="Ca nada"
if fld_City="Toron to"
if fld_Member="1"
display the following text, "blah blah."
if fld_country"USA "
if fld_city="New York"
if fld_member="2"
display the following text, "blah blah."
if fld_country"Can ada"
if fld_City="Toron to"
if fld_Member="2"
display the following text, "blah blah."
if fld_country"Can ada"
if fld_City="Ottaw a"
display the following text, "blah blah."
end if statements
I am not certain if this is possible to nest so many if statements within a single if statement. Should I use choices? Any advice would be greatly appreicated. Thanks.
Joe.
<code>
<?if@inlines:fl d_COUNTRY='Cana da'?>?fld_COUNT Y_DESCR?><?end if?>
</code>
I have a question about if statements with xml. I need to ensure certain fields have a particular value, if this is true I want to display a large amount of text. Let me give an example below:
if fld_Country="Ca nada"
if fld_City="Toron to"
if fld_Member="1"
display the following text, "blah blah."
if fld_country"USA "
if fld_city="New York"
if fld_member="2"
display the following text, "blah blah."
if fld_country"Can ada"
if fld_City="Toron to"
if fld_Member="2"
display the following text, "blah blah."
if fld_country"Can ada"
if fld_City="Ottaw a"
display the following text, "blah blah."
end if statements
I am not certain if this is possible to nest so many if statements within a single if statement. Should I use choices? Any advice would be greatly appreicated. Thanks.
Joe.
<code>
<?if@inlines:fl d_COUNTRY='Cana da'?>?fld_COUNT Y_DESCR?><?end if?>
</code>
Comment