Apr 06 2023 05:28 AM
So I am going through some data. See attached screenshot for what I want to achieve.
Basically, I need the following.
* If Question is Yes and Comment is Yes then completion column will need to be "Yes"
* If Question is Yes and Comment is No then completion column will need to be "Yes"
* If Question is N/A and comment is Yes then completion column will need to be "Yes"
* If Question is N/A and Comment is No then completion column will need to be "No"
* If Question is Not completed and Comment is No then completion column will need to be "No"
* If Question is Not completed and Comment is Yes then completion column will need to be "No"
Based on those 6 scenarios answers for "Question" and "Comment" columns, I need a formula so it can work out correct outcome in the "Completion" column. Thank you.
Apr 06 2023 05:35 AM - edited Apr 06 2023 07:07 AM
In D2:
=IF(OR(B2="Yes", AND(B2="N/A", C2="Yes")), "Complete", "Not Complete")
Edited to correct typo
Apr 06 2023 06:42 AM
Apr 06 2023 07:07 AM
SolutionMy apologies, the formula contained a typo. I have corrected my previous reply.
Apr 06 2023 07:44 AM
Apr 06 2023 07:07 AM
SolutionMy apologies, the formula contained a typo. I have corrected my previous reply.