Formula Question
This is my current formula that is producing error - Unparseable, I can't seem to figure out what the issue is.
=OR(IF(INDEX({Min_Skill_LTT}, MATCH([Job TItle]@row, {Minimum Skill Requirement Range 1}, 0)) = ([LTT Matrix Use]@row - 1,{Min_Skill_LTT}),"True", "False"),(IF(INDEX(MATCH([Job TItle]@row, {Minimum Skill Requirement Range 1}, 0)) = ([LTT Matrix Use]@row),"Step Down", "False")))
The objective is for the formula to Match Job Title and current skill to the Job title and Minimum skill required, look and see if it is exactly what it is supposed to be, if it is true - then true, false then false, if it is not exact I want it to verify if the numbers are only off by one and if yes return Step Down, if not then false. Any help that can be provided would be great!
Best Answer
-
The placement of your OR statement is part of the issue. Or and And statements can only be used inside of another function. Instead try a Nested IF statement for what your trying to achieve
=IF(INDEX({Min_Skill_LTT}, MATCH([Job TItle]@row, {Minimum Skill Requirement Range 1}, 0)) = [LTT Matrix Use]@row, "True", IF(INDEX({Min_Skill_LTT}, MATCH([Job TItle]@row, {Minimum Skill Requirement Range 1}, 0)) = ([LTT Matrix Use]@row -1), "Step Down", "False"))
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
Answers
-
The placement of your OR statement is part of the issue. Or and And statements can only be used inside of another function. Instead try a Nested IF statement for what your trying to achieve
=IF(INDEX({Min_Skill_LTT}, MATCH([Job TItle]@row, {Minimum Skill Requirement Range 1}, 0)) = [LTT Matrix Use]@row, "True", IF(INDEX({Min_Skill_LTT}, MATCH([Job TItle]@row, {Minimum Skill Requirement Range 1}, 0)) = ([LTT Matrix Use]@row -1), "Step Down", "False"))
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Thank you so much that worked! It was driving me crazy :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 463 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 59 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!