Hello guys,
I am trying to sum cell values between specified dates and for a column containing a specific label but I am getting Err502 (LO v7.0.3.1)
I have dates, beginning and ending of a month specified in Sheet “Start” (also defined cells with name i.e. JanFirst and JanLast). In Sheet “Yesterday” I have a table that is calculating sums from another 2 Sheets (Today Stat+TodayFore) for all the days in the year (All dates in the year are also named range “Yesterday_Date”), Now in Sheet “Yesterday Summary” I want to sum all values in Sheet Yesterday, between the specified dates (JanFirst and JanLast), I would also like to only sum values from a column marked with a specific label that are in both (Yesterday Summary and Yesterday sheets)
Formula:
=SUMIFS($Yesterday.B4:T369 , Yesterday_Date , “>=”&JanFirst , Yesterday_Date , “<=”&JanLast , $Yesterday.B3:T3,B2)
I am getting the Err 502
Yesterday.B4:T369 - table of values to be summed up,
Yesterday_Date - named range of all dates in the year,
JanFirst - First date of January,
JanLast - Last date of January,
Yesterday.B3:T3 - range of names of products,
B2 - The cell containing the product name to calculate the sum for
All cells as far as I can tell were formatted correctly (numbers, dates, text) to allow the logical tests to complete
I know this may be clear as muddy water but if more explanation is required I will provide it.
Pls help not sure what is the issue here.