+ Reply to Thread
Results 1 to 3 of 3

Combining Multiple IF Statements

  1. #1
    Registered User
    Join Date
    10-15-2008
    Location
    North Carolina
    MS-Off Ver
    2016
    Posts
    31

    Combining Multiple IF Statements

    First, let me say y'all are the best!! You have helped me out time and time again...thank you!!

    I have attached a sample spreadsheet for your review.

    I think I need to combine multiple IF statements into one single statement. See column I:

    There is currently a formula in Column I that looks at Column H and computes a ROUND formula based on this information. Unfortunately, this formula only works if Column J says "MB". If Column J says "Minutes" then I need Column I to compute with this formula:

    =IF(H2<30,0.5,ROUNDUP(H2/60,1))

    How can I combine this with the current formula to get what I am looking for? Here is the current formula (for MB):

    =IF(H2<0.125,0.125,ROUND(H2,4))

    Thanks in advance!
    Carlyn
    Attached Files Attached Files
    Last edited by prefcomm; 11-11-2009 at 11:35 PM.

  2. #2
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,885

    Re: Combining Multiple IF Statements

    Hi Carlyn, will this work for you:

    =IF(J2="MB",IF(H2<0.125,0.125,ROUND(H2,4)),IF(J2="Minutes",IF(H2<30,0.5,ROUNDUP(H2/60,1))))

  3. #3
    Registered User
    Join Date
    10-15-2008
    Location
    North Carolina
    MS-Off Ver
    2016
    Posts
    31

    Re: Combining Multiple IF Statements

    That is perfect, Paul!! Thanks again!!

+ 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