From the Fields List Menu on the right hand side:
Remember in plain English the expressions in this case are just saying if my field “Aboriginal and Torres Straight Islander Status” is equal to a particular value i.e. Yes, Aboriginal I should be ticked (represented by the 1) and if it is not that value I should NOT be ticked (represented by the 0).
Field | Expression |
---|---|
ATSI Yes Aboriginal | Iif( [AboriginalAndTorresStraitIslanderStatus] == ‘Yes, Aboriginal’,1 , 0) |
ATSI Yes TSI | Iif( [AboriginalAndTorresStraitIslanderStatus] == ‘Yes, Torres Strait Islander’,1 , 0) |
ATSI Both | Iif( [AboriginalAndTorresStraitIslanderStatus] == ‘Both Aboriginal and Torres Strait Islander’,1 , 0) |
ATSI Unknown | Iif( [AboriginalAndTorresStraitIslanderStatus] == ‘Not stated / inadequately described’,1 , 0) |
ATSI No | Iif( [AboriginalAndTorresStraitIslanderStatus] == ‘No’,1 ,0) |