Index Match help

I am trying to convert from Excel to Smartsheet without adding a ton of columns to make this work. I am not if Index/Match is the way to go OR VLOOKUP, etc.

Again, the entries from the operators will vary therefore the low/high specs are used in previous columns that you helped me with.


This is the excel version of ONE stage. As you can see the formulas were added below in the form of "IF" functions. If the entry is above the spec, "HIGH", etc. The row below is set to do a Vlookup on another tab with the following information:

Based on 3 column, if low/high/okay for each cell and then return a required action based on the combination of these three cells.

Is it possible to somehow create this in one column or even 2 and cross-reference another sheet?

Currently have the following for conditional formatting (on a previous thread).


Best Answers

  • Elizabeth Aird
    Elizabeth Aird ✭✭✭✭
    Answer ✓

    You are one smart man!!! :)

    I still may have questions but am going to work on it now. Thanks again!!

  • Paul Newcome
    Paul Newcome Community Champion
    Answer ✓

    There should actually only be a small amount of adjustments made. I'll try to highlight them here...

    =INDEX({Ouput}, MATCH(IF([Stage 2 FA]@row < INDEX({S2Low}, MATCH(Substrate@row, {Sub}, 0)), "LOW", IF([Stage 2 FA]@row > INDEX({S2High}, MATCH(Substrate@row, {Sub}, 0)), "HIGH", "OKAY")) + "-" + IF([Stage 2 TA]@row < INDEX({S2Low}, MATCH(Substrate@row, {Sub}, 0)), "LOW", IF([Stage 2 TA]@row > INDEX({S2High}, MATCH(Substrate@row, {Sub}, 0)), "HIGH", "OKAY")) + "-" + IF([Stage 2 Ratio]@row < INDEX({S2Low}, MATCH(Substrate@row, {Sub}, 0)), "LOW", IF([Stage 2 Ratio]@row > INDEX({S2High}, MATCH(Substrate@row, {Sub}, 0)), "HIGH", "OKAY")), {FA-TA-RATIO}, 0))


    The two bold references are all that you should need to change.

    {Ouput} - This is going to be the right-hand column in your second screenshot of the original post (nevermind the typo haha).

    {FA-TA-RATIO} - This is going to be the left-hand column in your second screenshot of the original post.


    Other than that, you should be able to use cross sheet references you already have in place for the initial INDEX/MATCH functions, and I tried to get the column names to match what you have provided in other comments here.

«1

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!