Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

Index Match formula not working properly

I'm trying to use an Index Match formula to pull data from another sheet based on matching an order number (T Scan column). For some reason it works perfectly when the order number is 8 characters. Any order number less than 8 characters returns #NO MATCH. I even tried adding additional characters to one on this sheet as well as the corresponding line on the other sheet bringing both up to 8 and it worked. Does anyone have any idea why this is happening?

This is the formula I am using;

For order type

=INDEX({DCS ORDER TRACKING (Job Type)}, MATCH([T Scan]@row, {DCS ORDER TRACKING (MV#)}))

For PO Expected Date

=INDEX({DCS ORDER TRACKING (PO Expected Date)}, MATCH([T Scan]@row, {DCS ORDER TRACKING (MV #)}))

Best Answer

  • ✭✭✭✭✭
    Answer ✓

    Hello @Paul O

    Try adding "0" as your search type on your MATCH logic. The search type is the manner in which to search where "0" is not sorted.

    For order type

    =INDEX({DCS ORDER TRACKING (Job Type)}, MATCH([T Scan]@row, {DCS ORDER TRACKING (MV#)},0))

    For PO Expected Date

    =INDEX({DCS ORDER TRACKING (PO Expected Date)}, MATCH([T Scan]@row, {DCS ORDER TRACKING (MV #)},0))

    Melissa Yamada
    melissa@insightfulsheets.com
    Data made simple, spreadsheets reimagined

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions