Hi, i need to change the sql from a field type select.
if the variable to evaluate is ‘Yes’ then the field has a SQL, if is ‘No’ the field has other SQL from other table.
example:
if var == yes
{field_select} = “select a, b from table1”;
else
{field_select} = "select c, d from table2";
end if;
Is possible do it with SC7?