-1

What would be the Google Sheet formula?

In the sheet "Employee View," I want to count the number of times the value "Camilla" is included in Column A in the sheet named 'Projects View.' Column A includes multiple values (e.g., Camilla, Santi, Gaspard) in each cell as I am using data validation with multiple selection in Google Sheets.

=COUNTIF(FLATTEN(SPLIT(FILTER('Projects View'!A:A, 'Projects View'!A:A <> ""), " ")), "Camilla")
0

1 Answer 1

1

You may try:

=COUNTIF('Projects View'!A:A, "*Camilla*")

This outputs the count of the number of times the value "Camilla" is included in Column A in Sheet name 'Projects View' that uses data validation with multiple selection in Google Sheets.

Sign up to request clarification or add additional context in comments.

1 Comment

If my answer helped, consider accepting it by clicking the checkmark on the left and upvoting it (if possible). This marks the issue as resolved. For more information, see What should I do when someone answers my question?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.