Forum Discussion

Randy Taillon's avatar
Randy Taillon
Copper Contributor
Feb 06, 2018

Nested IF

Hello,

 

I need a little nudge on a formula.

 

I am working on a spreadsheet that calculates day rates for my business. 

 

Let's say a day is ten hours and the rate for that day is 1000 dollars. Each day requires the transport and setup of multiple pieces of equipment. Since that equipment needs to be set up and taken down each day, the minimum fee for a day is 650 dollars or .65.

 

We quote in 1/2 or full days. I have an IF statement that will retrieve 650 dollars when it sees 0.5 in the referenced column. What I want is for it to apply that same logic when it sees any variant of .5, like 1.5 or 2.5, etc. So if the number of days in column A is 1.5, I want it to return the value 1650 dollars.

 

This spreadsheet generates the actual quote and I don't want to have use increments other than .5 for the calculation.

 

Make sense?

  • Willy Lau's avatar
    Willy Lau
    Feb 07, 2018
    =IF(C3,C3*F3,IF(D3,D3*F3,(INT(b3)+MAX((MOD(b3,1)>=0.5)*0.65, MOD(b3,1)))*f3))

    I didn't know if this meet your needs.  

  • Damien_Rosario's avatar
    Damien_Rosario
    Silver Contributor
    Hi Randy

    Are you able to upload a sample of the spreadsheet? Might be good to see what you are working with!

    Cheers
    Damien
  • Willy Lau's avatar
    Willy Lau
    Steel Contributor
    =(INT(quote)+MAX((MOD(quote,1)>0)*0.65, MOD(quote,1)))*rate

    quote can be 1,1.5, 1.7, 2, 2.1, etc.

    rate should be 1000, or the absolute cell reference of the cell contains the rate

     

    if only those quote > x.5 and < x.65 turn to x.65

    =(INT(quote)+MAX((MOD(quote,1)>=0.5)*0.65, MOD(quote,1)))*rate

     

    • Randy Taillon's avatar
      Randy Taillon
      Copper Contributor

      Willy,

       

      I'm trying to get my head around this. I got it to partially work but it seems to be working opposite.

      • Willy Lau's avatar
        Willy Lau
        Steel Contributor
        =IF(C3,C3*F3,IF(D3,D3*F3,(INT(b3)+MAX((MOD(b3,1)>=0.5)*0.65, MOD(b3,1)))*f3))

        I didn't know if this meet your needs.  

  • Damien_Rosario's avatar
    Damien_Rosario
    Silver Contributor

    In addition to Willy's answer, see if this formula works for you.

     

    =IF(MOD(B3,1),SUM(INT(B3)*1000,650),B3*1000)

     

    Basically, I've devised an IF statement that checks to see if the number is a whole number or decimal.

     

    If it is a whole number, then do B# x 1000.

    If it is a decimal value, then B# x 1000 + 650.

     

    I have also modified your spreadsheet and have attached it with the formula in action.

     

    The formula is based on the assumption that you will use only 0.5 increments as you have stated in your post (therefore anything like .1 to 0.9 will always read as $650).

     

    I hopefully have understood you right with what you want but if not, Willy and I can try again!

     

    Cheers

    Damien 

    • Randy Taillon's avatar
      Randy Taillon
      Copper Contributor

      Damien,

       

      You understood me perfectly. 

       

      While it's unlikely I'll use a decimal other than .5, I would prefer to preserve the ability to do so. I did not however state that in previous posts.

       

      I think I get it now. The magic lies in INT. Basically, the formula says if it's a whole number, multiply by 1000 (or F3) and if it contains a decimal, substitute .65 for whatever the decimal is.

       

      I'm glad I got two different responses. That gave me a couple ways to look at it and made it click for. I will use both versions. Yours I will use to distribute to staff that don't have the authority to change pricing and Willy's I will use in my version.

       

      Thanks! I sincerely appreciate both of you being willing to help out.

       

       

      • Damien_Rosario's avatar
        Damien_Rosario
        Silver Contributor
        Thanks for the kind words Randy. I think we (in the tech community) just have an awesome amount of fun helping good people like yourself problem solve things.

        We're always here if you need anything!

        Best wishes
        Damien

Resources