I have the following formula in my report in order to concatenate two fields (the wine type field will always have a value, the other designation field may not). Sometimes the field will not print any value even though there is a value in the wine type field. Am I missing something?
Thanks for your help.
stringvar x:= "";
If len({entry.entry_other_designation}) < 1
or isnull({entry.entry_other_designation})
or {entry.entry_other_designation} = "" then
x:= {entry.entry_wine_type}
else
x:= {entry.entry_wine_type} & ", " & {entry.entry_other_designation};
x;
[sig][/sig]
Thanks for your help.
stringvar x:= "";
If len({entry.entry_other_designation}) < 1
or isnull({entry.entry_other_designation})
or {entry.entry_other_designation} = "" then
x:= {entry.entry_wine_type}
else
x:= {entry.entry_wine_type} & ", " & {entry.entry_other_designation};
x;
[sig][/sig]