I have an object that references a numerical column from a table. I wan it to rereturn the values in this way:
“Contains” if value=1
“No contains” if value=2
the original value if value distinct of 1 and 2.
Can I define it in the Designer? I have tried it defining the object format but the condoitional format only works with negative,positive or null value.
if table.field = 1 then “Contains” else if table.field = '2 then “No Contains” else table.field
Good luck.
You wrote:
“Contains” if value=1
“No contains” if value=2
the original value if value distinct of 1 and 2.
Can I define it in the Designer? I have tried it defining the object format but the condoitional format only works with negative,positive or null value.