I am a bit stumpped - I am using the following formula to collect data from a multi select column
=COUNTIFS({Name}, [Name1]@row, {Unacceptable}, CONTAINS([Answer]@row , @cell ))
and for the most part it is fairly straigtforward to count the number of elements in the column but the formula does not work when the string has "overlap". I collect the string Q1 through Q56 in a multiselect and I want to (for example ) count all instances of Q2, the issue is that in a cell or the whole column may be entries like Q2, Q22, Q28 etc. which does not get along well with countifs and the has or contains functions. Any ideas on how to count Q2 seperately from Q20 - Q29 (same for Q1-Q5 and the associated number series)?