I'm trying to us both sumifs and countifs to gather various information on a set of loans. I'm wanting to look at the year the loan was originated as one of my criteria in these statements, but the dates are stored with the actual date.
I find that sumifs and countifs are generally MUCH faster built in functions in excel than sumproduct or building a sum if array.
{=SUMPRODUCT(--(IFERROR(YEAR(U:U),0)=2014),AV:AV)}
{=SUM(IF((IFERROR(YEAR(U:U),0)=2014),AV:AV))}
Both of these work and provide the answer I need, however this is a huge spread sheet and I would be more comfortable if I could put this into a sumifs statement.
=SUMIFS(AV:AV,year(U:U),2014) does not work
=SUMIFS(AV:AV,iferror(year(U:U),0),2014) also does not work
Is there something in the sumifs function's logic that is not allowing this to work or is there just some slight syntax that I'm missing here?
Any and all help is greatly appreciated.
I find that sumifs and countifs are generally MUCH faster built in functions in excel than sumproduct or building a sum if array.
{=SUMPRODUCT(--(IFERROR(YEAR(U:U),0)=2014),AV:AV)}
{=SUM(IF((IFERROR(YEAR(U:U),0)=2014),AV:AV))}
Both of these work and provide the answer I need, however this is a huge spread sheet and I would be more comfortable if I could put this into a sumifs statement.
=SUMIFS(AV:AV,year(U:U),2014) does not work
=SUMIFS(AV:AV,iferror(year(U:U),0),2014) also does not work
Is there something in the sumifs function's logic that is not allowing this to work or is there just some slight syntax that I'm missing here?
Any and all help is greatly appreciated.