+ Reply to Thread
Results 1 to 2 of 2

Index Match Formula with If Statement

  1. #1
    Forum Contributor
    Join Date
    08-29-2012
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2010
    Posts
    155

    Index Match Formula with If Statement

    I am working on a problem and am having issues on this last piece. The following is the scenario.

    I am trying to calculate shipping costs. I need to Use Index and Match formula in the Shipping Prices tab by using the shipping zone in cell B20 and the total amount of the order seen in cell E37.



    i. Tier 1: Orders of $0-$99.99:

    ii. Tier 2: $100-$199.99:

    iii. Tier 3:

    iv. In addition, if the customer orders $250 or more worth of product (before tax and shipping), then shipping is free. Free shipping should be shown with the word ‘FREE’ in the shipping cost output cell.

    v. If the customer lives in Alaska or Hawaii, additional handling charges of $15 should be added to the standard shipping fee (and should apply even if shipping is free).
    Attached Files Attached Files

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,728

    Re: Index Match Formula with If Statement

    Put this formula in E39:

    =IF(OR(B15="Hawaii",B15="Alaska"),15,0)+IF(E37>250,0,INDEX('Shipping Pricing'!$B$3:$E$5,MATCH(E37,'Shipping Pricing'!$A$3:$A$5),MATCH(VLOOKUP(B15,'Shipping Zones by State'!A:B,2,0),'Shipping Pricing'!$B$2:$E$2,0)))

    Apply a Custom format to that cell of:

    General;;"FREE"

    to show zero values as the word FREE.

    Hope this helps.

    Pete

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Index/Match formula with If statement
    By protechds in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 01-31-2015, 10:22 PM
  2. Replies: 3
    Last Post: 05-02-2013, 01:31 AM
  3. [SOLVED] If Statement (Match/Index)
    By usmanfarok in forum Excel General
    Replies: 12
    Last Post: 09-26-2012, 04:42 AM
  4. Adding an If statement to an Index Match Formula
    By brandiemz101 in forum Excel General
    Replies: 3
    Last Post: 11-16-2011, 03:25 PM
  5. Replies: 3
    Last Post: 09-24-2010, 08:47 AM

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