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
and
Kids 0<
Then Mother =1
Else 0
But I can't quite get it.
Solved! Go to Solution.
Try:
IF [Age] > 0 AND [Gender] = 'F' AND [Kids] > 0 THEN 1 ELSE 0 ENDIF
In a formula tool:
Perfect!!