So, I've got a table with some data in a column. Let's say the column looks like this (using commas to represent the end of one cell and the start of the next):
ABC, ACD, AABBCF, EFGGHH, AAABCDE
I want to write a formula that will tell me how many times the letter A shows up in that column, across all the cells. In this case, the answer is 7 times. So, like, I want to concatenate all the cells, and then count how times A shows up in that whole long string. How would I do this?