Forum Discussion
Wccat
Jun 05, 2019Copper Contributor
Adding two criteria together
Hi, I would like to get the sum of all the "y" in each column, only if the last row has "a" then "b" etc. What's the best way to do that? Edit: I have columns representing answers to question...
Wccat
Jun 11, 2019Copper Contributor
I have columns representing answers to questions. I want a count of the number of "y"s (literally "y", not representing numbers) in each column only if the last value is "a" (the actual letter "a").
I am trying to create a chart that shows the number of answers based on how recent their last training.
I am trying to create a chart that shows the number of answers based on how recent their last training.
SergeiBaklan
Jun 11, 2019Diamond Contributor
That could be like
=IFERROR(COUNTIFS(INDEX($B$5:$AG$42,MATCH($B55,$A$5:$A$42,0),0),"y",$B$44:$AG$44,"a"),"no such")
here
if I understood your logic correctly