Forum Discussion
Jna3276
Aug 27, 2024Copper Contributor
Formula Excel Help
Hi, I'd like to create a formula which looks at column F and if it contains words, "Jay", "Em" then to go to column B AND C and if they both state 'Complete' or 'NA' then to return words in colum...
- Aug 28, 2024
Try this formula:
=IF(OR([@[Name]]={"Jay","Em"}), IF(SUM(COUNTIF(Table1[@[Servicing Status]:[Complaint Status]], {"Complete","NA"}))=2, "Case Closed", "Case Open"), "")
(Change Name to the real name of that column)
HansVogelaar
Sep 09, 2024MVP
Please explain in more detail what you want.
Jna3276
Sep 09, 2024Copper Contributor
I'd like to add word withdrawn to the list, if this is found in both or either Servicing / Complaint Status then the return values should be Case closed, like it does for Complete or NA
- HansVogelaarSep 09, 2024MVP
Thanks. Since you're still looking at 2 columns, you should use =2, not =3:
=IF(OR([@[Name]]={"Jay","Em"}), IF(SUM(COUNTIF(Table1[@[Servicing Status]:[Complaint Status]], {"Complete","NA","Withdrawn"}))=2, "Case Closed", "Case Open"), "")