Averages
how do i get the number of "yes" when columns are not next to eachother. i want the total of "yes" out of the 12 months and then get a percent.
Best Answer
-
You can use this one... but replace the Col# with the full text of your column names.(be sure to still include the [ ] brackets. That will give you the % for each row.
=(COUNTIF([Col1]@row, "Yes") + COUNTIF([Col2]@row, "Yes") + COUNTIF([Col3]@row, "Yes") + COUNTIF([Col4]@row, "Yes") + COUNTIF([Col5]@row, "Yes") + COUNTIF([Col6]@row, "Yes") + COUNTIF([Col7]@row, "Yes") + COUNTIF([Col8]@row, "Yes") + COUNTIF([Col9]@row, "Yes") + COUNTIF([Col10]@row, "Yes") + COUNTIF([Col11]@row, "Yes") + COUNTIF([Col12]@row, "Yes")) / 12
Answers
-
Hi @Please help Love your screenname! Can you post a screenshot of your sheet?
-
@Please help so are you looking for a % of Yeses across each row?
Like row 1 has one yes out of 12 so that's 8.33%
Row 2 has 2 yes out of 12 so that's 16.6%
and so on.
Are you placing this formula in the Response Rate column for each row?
-
it is for the whole year so all months combined @Ryan Sides
-
You can use this one... but replace the Col# with the full text of your column names.(be sure to still include the [ ] brackets. That will give you the % for each row.
=(COUNTIF([Col1]@row, "Yes") + COUNTIF([Col2]@row, "Yes") + COUNTIF([Col3]@row, "Yes") + COUNTIF([Col4]@row, "Yes") + COUNTIF([Col5]@row, "Yes") + COUNTIF([Col6]@row, "Yes") + COUNTIF([Col7]@row, "Yes") + COUNTIF([Col8]@row, "Yes") + COUNTIF([Col9]@row, "Yes") + COUNTIF([Col10]@row, "Yes") + COUNTIF([Col11]@row, "Yes") + COUNTIF([Col12]@row, "Yes")) / 12
Help Article Resources
Categories
Check out the Formula Handbook template!