Forum Discussion
QuickBaseCoachD
6 years agoQrew Captain
Try this
IF(
[Are you a Resident] = "Yes"
and
([# of days since last service] >= 365 or IsNull([This is a duration field]))
and
[Are you at least 30 days behind on Rent] = "Yes"
and
[Age] > = 18, "Eligible", "Ineligible")
IF(
[Are you a Resident] = "Yes"
and
([# of days since last service] >= 365 or IsNull([This is a duration field]))
and
[Are you at least 30 days behind on Rent] = "Yes"
and
[Age] > = 18, "Eligible", "Ineligible")
- PhelanSanders6 years agoQrew Assistant CaptainTried plugging it is, it is saying the >= cant be applied on type duration.
IF(
[Are you a DC Resident?] = "Yes",
[# of days since last ERAP services] >= 365 or IsNull([This is a duration field]))
[Are you at least 30 days behind on Rent] = "Yes"
[Age] > = 18, "Eligible", "Ineligible") - QuickBaseCoachD6 years agoQrew Captaintry this
IF(
[Are you a DC Resident?] = "Yes",
[# of days since last ERAP services] >= Days(365) or IsNull([This is a duration field]))
[Are you at least 30 days behind on Rent] = "Yes"
[Age] > = 18, "Eligible", "Ineligible") - PhelanSanders6 years agoQrew Assistant Captainwhy does the "This is a duration field" need to be plugged into the formula?
- QuickBaseCoachD6 years agoQrew CaptainIt doesn't. Just a copy and paste error.
Try this version
IF(
[Are you a Resident] = "Yes"
and
([# of days since last service] >= 365 or IsNull([# of days since last service]))
and
[Are you at least 30 days behind on Rent] = "Yes"
and
[Age] > = 18, "Eligible", "Ineligible") - PhelanSanders6 years agoQrew Assistant CaptainExpected a valid expression after the ">"
IF(
[Are you a DC Resident?] = "Yes"
and
([# of days since last ERAP services] >= 365 or IsNull([# of days since last service]))
and
[Are you at least 30 days behind the rent?] = "Yes"
and
[Age] > = 18, "Eligible", "Ineligible") - QuickBaseCoachD6 years agoQrew CaptainDo you gave a space between the > and the = ?
it should be
>= - PhelanSanders6 years agoQrew Assistant Captain-after spacing it-
Expected a valid expression after the ">"
IF(
[Are you a DC Resident?] = "Yes"
and
([# of days since last ERAP services] > = 365 or IsNull([# of days since last service]))
and
[Are you at least 30 days behind the rent?] = "Yes"
and
[Age] > = 18, "Eligible", "Ineligible") - QuickBaseCoachD6 years agoQrew CaptainTry this one
IF(
[Are you a Resident] = "Yes"
and
([# of days since last service] >= Days(365) or IsNull([# of days since last service]))
and
[Are you at least 30 days behind on Rent] = "Yes"
and
[Age] >= 18, "Eligible", "Ineligible") - PhelanSanders6 years agoQrew Assistant Captainlooks like it works! Thank you!!
- QuickBaseCoachD6 years agoQrew Captain:) we got there, sorry it took so many iterations