Updated: 2025-03-25
{{CurrentClient.Info.Residency.ResidencyStatus}}
field code to your clipboard.CurrentClient
context.Info.Residency
portion of the field code, removing the row number.ResidencyStatus
portion on its own for the longer condition. ResidencyStatus
is the Resident
value, then apply the not() function to reverse the condition so that it checks for a value other than Resident
selected: {{# not(ResidencyStatus="Resident") }}
DeemedResident
: {{# not(ResidencyStatus="Resident") and not(ResidencyStatus="DeemedResident")}}
{{# not(ResidencyStatus="Resident") and not(ResidencyStatus="DeemedResident")}}
Copy this sample code into a template to try it out.
{{# CurrentClient}}
{{# Info.Residency}}
{{# not(ResidencyStatus="Resident") and not(ResidencyStatus="DeemedResident")}}
Show this if someone is not a resident or a deemed resident.
{{/ not(ResidencyStatus="Resident") and not(ResidencyStatus="DeemedResident")}}
{{/ Info.Residency}}
{{/ CurrentClient}}