I have two columns of data (A dates and B currency amounts). The task I am trying to accomplish is simple: I want to sum up the transactions amounts (formatted as currency) in column B if they fall within a certain date range (dates are found in column A). I have two date fields: E4 and F4 containing 7/2/2014 and 7/16/2014.
=SUMIFS(B:B,A:A,">"&E4,A:A,"<"&F4)
I have spent a good deal of time trying to find out why it is returning zero, and I cannot find the answer. The goal is to take raw data like this and do a simple quarterly sum (the dates don't change). I suspect that the operators ">" and "<" are the problem, but that's just an uninformed opinion. I'm using Excel 2013, and sometimes 2007. Thanks for your help.
=SUMIFS(B:B,A:A,">"&E4,A:A,"<"&F4)
I have spent a good deal of time trying to find out why it is returning zero, and I cannot find the answer. The goal is to take raw data like this and do a simple quarterly sum (the dates don't change). I suspect that the operators ">" and "<" are the problem, but that's just an uninformed opinion. I'm using Excel 2013, and sometimes 2007. Thanks for your help.