Discussions

 View Only
  • 1.  I need formula help!

    Posted 09-21-2017 17:22
    I am trying to add to my existing formula.  
    ([Paid Volume]*0.1)

    Now if [CS Down Payment Method]or[Down Payment Method]=Check Then 
    ([Paid Volume]*0.12) If not then ([Paid Volume]*0.1)


  • 2.  RE: I need formula help!

    Posted 09-21-2017 17:24
    Try this.
    if([CS Down Payment Method]="Check" OR [Down Payment Method]="Check", ([Paid Volume]*0.12) , ([Paid Volume]*0.1))