I know the syntax in order to fill one field with only one condition (field calculator):
case
when "attribut" = 'value' then value
end
But how to do populate automatically one field with two or three or more conditions?
I tried the following command but it does not work:
case
when "attribut" = 'value' and "attribut number2" = 'value' then value
end
Could you throw light for me?