Forum Discussion

Dadojohn's avatar
Dadojohn
Copper Contributor
Jan 12, 2019

simple "if" formula that i cant work out.

Hi,

 Can some please write the "if" formula for below.

 

Thanks.

 

If F22 is equal to or greater than 9000 but less than 15000 then put 5% of the value of F22 into E25. If F22 is equal to or greater than 15000 then put 6% of the value of F22 into E25.

  • Naveen1992's avatar
    Naveen1992
    Brass Contributor

    Hi Dadojohn

     

    try this:-

    =IF(AND(F22>=9000,F22<15000),E25+F22*5/100,IF(F22>=15000,E25+F22*6/100,"N/A"))

     

    if not get ur solution, than share some sample data

     

    Regards

    Naveen

  • Naveen1992's avatar
    Naveen1992
    Brass Contributor

    Hi Dadojohn

     

    try this:-

    =IF(AND(F22>=9000,F22<15000),E25+F22*5/100,IF(F22>=15000,E25+F22*6/100,"N/A"))

     

    if not get ur solution, than share some sample data

     

    Regards

    Naveen

  • Eva Vogel's avatar
    Eva Vogel
    Steel Contributor
    Hello, I tested it and here’s my screenshot for you. If you enter a number in a2 you can see the result in d2. Additionally you can refer to another cell like f22 with „=d2“ . Greets, Eva
  • Eva Vogel's avatar
    Eva Vogel
    Steel Contributor
    Hello, I tested it and here’s my screenshot for you. If you enter a number in a2 you can the result in d2. Additionally you can refer to another cell in f22 with „=d2“ . Greets, Eva

Resources