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")