Hello,
I feel like I am close with the current formula I am using in a build out. Could use some help if anyone has suggestions.
I have a section where AutoFail is possible and then a Section that is Pass/Fail based on %'s.
If they Pass the Pass/Fail Portion but Auto Fail the other portion the entire total score is Auto Fail. If they Pass the Auto Fail portion but Fail the Pass/Fail area, then the return should be Fail.
I am currently using this formula:
=IF([Auto Fail Total]@row =0, "AUTO FAIL", IF([Pass/Fail %]@row >= 0.6, "PASS", IF([Pass/Fail %]@row < 0.6, "FAIL")))
The only part it is not returning when I run tests is the Fail if the score is below 60%.
Any help would be greatly appreciated.