Use date values ββfrom another sheet in a formula
I have two sheets in my excel file.
The first sheet contains values ββand dates, and in the second I want to calculate values ββbetween a range of dates.
for example:
50 20/9/2014
1600 16/10/2014
254 21/10/2014
1547 03/11/2014
(Belgian time)
I tried it with the following formula:
=SUMIFS(INPUT!$G$3:$G$100; INPUT!$H$3:$H$27; ">=01/10/2014"; INPUT!$H$3:$H$27; "<=31/10/2014")
This gives me an error in the formula and I notice that inside the values ββof the formula, the date has become a random value:
Anyone have an idea how to do this correctly?
source to share
I couldn't find it either, but it seems like your ranges should be the same size (sum_range and criteria)
.
So change your sum_range to G3:G37
or your criteria range to H3:H100
and it will solve your problem. :)
Link: http://www.excelforum.com/excel-formulas-and-functions/731875-sumifs-returns-value.html
source to share