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 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.
Thanks.
5 Replies
- TwifooSilver ContributorSUMIFS may return your desired result but the arguments thereof cannot be specified unless you attach your sample file.
- WccatCopper ContributorI 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.
- SergeiBaklanDiamond Contributor
Wccat , could you please submit small sample file - your "y" etc are texts or numbers, where you'd like to put the result (same column or outside the range), what exactly means "then 'b'", etc. File gives much more information.
- WccatCopper ContributorI 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.- SergeiBaklanDiamond 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