I am creating a Sexe property that being populating slowly. So i have people that have the property filled with man or woman, and I have some people that don’t have the property.
As my business in 90% female, I want to consider all the people that did not answer as female.
In my emails, i would like to show a product block to :
Male : person.Sexe == 'male' (seems to work)
Female and unknown : I don’t know what logic to use.
To confirm @KeviSunshine response, to show a block when the gender is female or has no value, the display logic is person.sexe == ‘female’ or person.sexe == ‘’
If you have added a value ‘unknown’ then it would be person.sexe == ‘female’ or person.sexe == ‘unknown’