Forum Discussion

Del's avatar
Del
Qrew Cadet
5 years ago

Formula Text field based on number field

I performed this via dynamic form rules in the past but want a formula text field for the following conditions,

If

[Total Number of Members in the Household] = 1 & [Total monthly income] is equal to or greater than $1329.17 BUT less than $4529.17, then display "Eligible", If over $4529.17, then "Ineligible"


[Total Number of Members in the Household] = 2 & [Total monthly income] is equal to or greater than $1795.83 BUT less than $5175.00, then display "Eligible", If over $5175.00,  then"Ineligible"

















------------------------------
Ermias Bean
------------------------------
  • PaulPeterson1's avatar
    PaulPeterson1
    Qrew Assistant Captain

    If([Total Number of Members in the Household] = 1  and  [Total monthly income] >=$1329.17 and 
    [Total monthly income] < $4529.17,  "Eligible",
    [Total monthly income] > $4529.17, "Ineligible",
    [Total Number of Members in the Household] = 2  and  [Total monthly income] >= $1795.83 and
    [Total monthly income] < $5175.00,  "Eligible",
    [Total monthly income]  > $5175.00,  "Ineligible")



    ------------------------------
    Paul Peterson
    ------------------------------
    • MarkShnier__You's avatar
      MarkShnier__You
      Icon for Qrew Legend rankQrew Legend

      I think that Paul's formula needs to be adjusted

      If(
      [Total Number of Members in the Household] = 1  and  [Total monthly income] >=$1329.17 and 
      [Total monthly income] < $4529.17,  "Eligible",

      [Total Number of Members in the Household] = 1 and [Total monthly income] > $4529.17, "Ineligible",

      [Total Number of Members in the Household] = 2  and  [
      Total monthly income] >= $1795.83 and
      [Total monthly income] < $5175.00,  "Eligible",

      [Total Number of Members in the Household] = 2  and [Total monthly income]  > $5175.00,  "Ineligible")



      ------------------------------
      Mark Shnier (YQC)
      Quick Base Solution Provider
      Your Quick Base Coach
      http://QuickBaseCoach.com
      mark.shnier@gmail.com
      ------------------------------
      • PaulPeterson1's avatar
        PaulPeterson1
        Qrew Assistant Captain

        Great catch, thanks Mark!



        ------------------------------
        Paul Peterson
        ------------------------------