Problem - Canadian Dental Care Plan Snippet

The snippet is automatically being included in the Client Letter when they are a new client making less than $90,000 - referencing prior year’s family income (even though we don’t have any income information on file) and they have no children, seniors, or adults with a disability.

Current snippet:

{{# Info.Residency.ResidencyStatus = "Resident" or Info.Residency.ResidencyStatus = "DeemedResident"}}
{{# (T12YearComparativeSummary.TaxableIncome.PriorYear + CurrentSpouse.T12YearComparativeSummary.TaxableIncome.PriorYear) < 90000}}{{# (first(Dependant, Identification.AgeOnDec31 < 18)) or (Info.CommonData.AgeOnDec31 > 63) or (Info.Filing.T2201OnFile="Yes")}}
Canadian Dental Care Plan
Based on your {{ Constants.PriorTaxationYear }} family income, you may be eligible for the interim Canadian Dental Care Plan. Seniors aged 65 and over, children under the age of 18 and adults with a valid Disability Tax Credit certificate may qualify for coverage if they do not have access to a private dental insurance plan. Details on eligibility and how to apply are available at: www.canada.ca/en/services/benefits/dental/dental-care-plan.html 
{{/ (first(Dependant, Identification.AgeOnDec31 < 18)) or (Info.CommonData.AgeOnDec31 > 63) or (Info.Filing.T2201OnFile="Yes") }}{{/ (T12YearComparativeSummary.TaxableIncome.PriorYear + CurrentSpouse.T12YearComparativeSummary.TaxableIncome.PriorYear) < 90000 }} 
{{/ Info.Residency.ResidencyStatus = "Resident" or Info.Residency.ResidencyStatus = "DeemedResident"}}

Result showing:

Canadian Dental Care Plan
Based on your 2023 family income, you may be eligible for the interim Canadian Dental Care Plan. Seniors aged 65 and over, children under the age of 18 and adults with a valid Disability Tax Credit certificate may qualify for coverage if they do not have access to a private dental insurance plan. Details on eligibility and how to apply are available at: www.canada.ca/en/services/benefits/dental/dental-care-plan.html

2 Likes