+ Reply to Thread
Results 1 to 15 of 15

if, nested if, if(and) logic

  1. #1
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    if, nested if, if(and) logic

    I have the attached file I am hoping someone can help me reason out a formula change for. What I am trying to do is say when any cell in range G11:U11 is 6200 or greater then I need to somehow account for the extra time in cell B18 into the formula in cell D25 which is:

    [code]
    =IF(R20<=TIME(10,0,0),R20,IF(AND((R20)>TIME(10,0,0),R20<=TIME(11,45,0)),R20+TIME(0,B14,0),IF(AND((R20)>=TIME(12,0,0),R20+TIME(1,0,0)<TIME(14,30,0)),B25+TIME(0,F16+60,0)+TIME(0,B14,0),IF((TIME(0,F16,0)+B25)>TIME(14,30,0),TIME(14,30,0),TIME(14,30,0)))))
    [\code]

    I hope this is understandable. I would put it in psudo code but I am not sure of the logistic of how to account to the cutter flip time in cell B18 in the D25 cell.
    Attached Files Attached Files

  2. #2
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: if, nested if, if(and) logic

    Can't you just append another IF?

    +IF(COUNTIF(G11:U11,6200)>1,B18,0)

  3. #3
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    I am not familiar with count IF let me try it.

  4. #4
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: if, nested if, if(and) logic

    The actual formula should be

    +IF(COUNTIF(G11:U11,6200)>0,B18,0)

  5. #5
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    Ok I don't understand and think I miss spoke. I don't want to add cell B18 if any one of the cell in range G11:U11. For D25 I only want to add in the value of cell B18 if G11>6200.

  6. #6
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    Ok I tried the following change:

    [code]
    =IF(R20<=TIME(10,0,0),R20,IF(AND((R20)>TIME(10,0,0),R20<=TIME(11,45,0)),R20+TIME(0,B14,0),IF((S20)>=TIME(12,5,0),S20+TIME(1,0,0),IF(S20>=TIME(14,30,0),TIME(14,30,0),0)+IF(G11>=62000,+time(0,B18,0),0))))
    [\code]

    However instead of adding the value of 10 in cell B18 it is adding 16???????
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    *note* I found if I put 4 in cell B14 I get the 10 that I was wanting to add????

  8. #8
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: if, nested if, if(and) logic

    That is because R20 and S20 have different values if G11 holds more than the basic 6000, so the first part of your formula is picking up n extra 16 seconds.

  9. #9
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    Any suggestions?

  10. #10
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: if, nested if, if(and) logic

    Suggestions for what? I explained why you get the results that you do.

  11. #11
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    Let me look closer

  12. #12
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    I took a close look and found an issue that fixed my original problem. However, fixing that caused another issue to come to the surface. Look at the attached Excel and you will see:

    [code]
    =(IF(G11>=B16,(G11/B9)*60+B18,G11/B9*60))
    [\code]

    In cell G18. When G11 is greater or equal to b16 then the formula should be adding 15 and 10 for a total of 25.
    Attached Files Attached Files
    Last edited by nicolelschramartin; 12-11-2012 at 03:13 PM.

  13. #13
    Registered User
    Join Date
    12-04-2012
    Location
    Estacada, OR
    MS-Off Ver
    Excel 2010
    Posts
    97

    Re: if, nested if, if(and) logic

    I am terrible at putting together if(and) functions. Can someone look at the below function and tell me where the mistakes are?

    Please Login or Register  to view this content.
    I think the problem is with the last If(and) portion of the equation but I have gone around and around with no resolution on my own. I also tried to verify the last IF(and)

    Please Login or Register  to view this content.
    It didn't work so I am all but convinced this is where the problem lies.

  14. #14
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: if, nested if, if(and) logic

    first, use the forward slash '/'to close your tags
    second, try this:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    you had a missing "(" on your last AND function..at least I hope that was all...without something to reference to, that was all I could find..

    Hope this helps
    was what I was trying to post...
    A picture may be worth a thousand words, BUT, a sample Workbook is worth a thousand screenshots!
    -Add a File - click advanced (next to quick post), scroll to manage attachments, click, select add files, click select files, select file, click upload, when file shows up at bottom left, click done (bottom right), click submit
    -To mark thread Solved- go top of thread,click Thread Tools,click Mark as Solved
    If you received helpful response, please remember to hit the * of that post

  15. #15
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: if, nested if, if(and) logic

    Quote Originally Posted by nicolelschramartin View Post
    I am terrible at putting together if(and) functions. Can someone look at the below function and tell me where the mistakes are?

    Please Login or Register  to view this content.
    .....
    There is no need to use AND() with each IF()
    The formula will be read and evaluated at the first TRUE value in this order

    <09:45:00
    <11:50:00
    <13:00:00
    <14:15:00

    Try this
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Or, I suspect this will possibly do as you need
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    If you need any more information, please feel free to ask.

    However,If this takes care of your needs, please select Thread Tools from menu above and set this topic to SOLVED. It helps everybody! ....

    Also
    اس کی مدد کرتا ہے اگر
    شکریہ کہنے کے لئے سٹار کلک کریں
    If you are satisfied by any members response to your problem please consider using the small Star icon bottom left of their post to show your appreciation.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1