Share via

Agreegated Result using multiple columns

James Toms 21 Reputation points
2021-11-29T00:58:53.753+00:00

Product: Sharepoint Lists Online

Creating a formula using SharePoint lists, is it possible to have a field that checks the following using formula

IF any of [A], [B] or [C] = "Fail", set column string to fail
Else If [A], [B] or [C] = "No Run", set column string to no run
Else = "Pass"

I would really appreciate the assistance.

Thanks

Microsoft 365 and Office | SharePoint | For business | Windows
0 comments No comments

Answer accepted by question author

Emily Du-MSFT 51,986 Reputation points Microsoft External Staff
2021-11-29T07:18:35.31+00:00

@James Toms

Here're steps:

1.Create three column named A, B and C.
2.Create a calculated column with following formula.
=IF(OR([A] = "Fail", [B] = "Fail",[C] = "Fail"), "Fail", IF(OR([A] = "No Run", [B] = "No Run",[C] = "No Run"), "No Run", "Pass"))
3.Result.
153282-1.png


If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.