Forum Discussion
Bryan_H88
Jan 14, 2022Copper Contributor
Returning two results based on one reference
Hi there! https://photos.app.goo.gl/qhGWx9h5KBiSGSHs5 First time posting. In the above linked image, I am trying to return the question and the description for any cell marked as "fail". For ex...
- Jan 15, 2022
Only if you have Microsoft 365, Office 2021 or Office 2019:
Let's say the sheet with the answers is named Results.
=TEXTJOIN(", ",TRUE,IF(Results!B3:D11="FAIL",Results!B2:D2&": "&Results!F3:F11,""))
For Office 2019, confirm the formula with Ctrl+Shift+Enter.
HansVogelaar
Jan 15, 2022MVP
Only if you have Microsoft 365, Office 2021 or Office 2019:
Let's say the sheet with the answers is named Results.
=TEXTJOIN(", ",TRUE,IF(Results!B3:D11="FAIL",Results!B2:D2&": "&Results!F3:F11,""))
For Office 2019, confirm the formula with Ctrl+Shift+Enter.
- Bryan_H88Jan 20, 2022Copper ContributorPerfect! Thank you so much!!