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)
Jna3276
Aug 28, 2024Copper Contributor
HansVogelaar hi, I've attached a file, the last column shows what the expected outcome should be. Hope that makes sense
HansVogelaar
Aug 28, 2024MVP
The formula that I proposed appears to work:
- Jna3276Aug 28, 2024Copper ContributorAh that's great! I must have typed the formula in wrong!! Thanks so much for your help :c)