How to compute Index Match and pull tolerance in a formula
Good afternoon,
I wonder if someone could help me to write the following formula. I have been trying for a couple of hours with no luck. I create two separate sheets
- INJ - Critical Tolerance (always fixed values - no user interaction)
- INJ - QUATO - Setup Sheet (User will specify platform and Parameter from an online form)
I want to pull the USL and LSL from the tolerance sheet and compute the results in the USL-SPEC
example:
If Platform and Parameter match in both sheets, I want to compute the USL and LSL taking into consideration the target value in the USL-SPEC column.
Target: 100
USL: 100.5
LSL: 99.25
Any Idea how to do that?
Your help is much appreciated!
Thanks,
Answers
-
Try this:
USL-PEC column:
=IFERROR(100 + VALUE(INDEX(COLLECT({INJ - Critical Tolerances - USL}, {INJ - Critical Tolerances - Platform}, Platform@row, {INJ - Critical Tolerances - Parameter} , Parameter@row), 1)), "")
LSL-PEC Column:
=IFERROR(100 - VALUE(INDEX(COLLECT({INJ - Critical Tolerances - LSL}, {INJ - Critical Tolerances - Platform}, Platform@row, {INJ - Critical Tolerances - Parameter} , Parameter@row), 1)),"")
Hope it helped!
-
David,
I have been trying to understand your formula. Could you please explain why you have a COLLET, INDEX, and value also and IFERROR?
The formula is not working as it should be, it's only giving me a blank statement. But, I think this is the right approach.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!