Morning,
I have this formula:
=COUNTIF('Input Sheet'!$M:$M,"Homework")
Which counts the number of homeworks in column M on the input sheet.
I now need to amend this so that it will only count these if:
the value in C4, is in the column F in the input sheet.
Any help would be greatly appreciated.
Thanks
Last edited by Cmorgan; 09-17-2011 at 12:48 PM.
Hello,
in 2010 you can use Countifs()
=COUNTIFS(M:M,"homework",F:F,$C$4)
In earlier versions of Excel, you can use Sumproduct, but you cannot use whole column ranges
=SUMPRODUCT(($M$1:$M$100="homework")*($F$1:$F$100=$C$4))
cheers,
Last edited by teylyn; 09-17-2011 at 05:34 AM.
Thanks for this
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks