Im trying to create a 1,0 variable that states if the subject is a mother.
So i am looking for something like
If Age 0<
and
Gender = F
Kids 0<
Then Mother =1
Else 0
But I can't quite get it.
Try:
IF [Age] > 0 AND [Gender] = 'F' AND [Kids] > 0THEN 1ELSE 0ENDIF
In a formula tool:
Perfect!!