Hi
I have 2 columns on Sheet 1 -
Column A
BSE
EST
NWD
BSE
MNS
BSE
etc
Column B
01/02/2011
01/02/2008
08/06/2012
(etc...various dates)
Column C
2100
1292
1828
1822
(etc...various values)
What I want to do is SUM the values in column C that are BSE and equal to or before a certain date which is in cell D56 (the date in the cell is 01/02/2011 and is formatted to be date).
For example this is one I've tried -
SUM(IF(AND(A1:A50="BSE", B1:B50<=D56)),C1:C5)
This seems like a simple task, maybe I'm just being slow...
I have 2 columns on Sheet 1 -
Column A
BSE
EST
NWD
BSE
MNS
BSE
etc
Column B
01/02/2011
01/02/2008
08/06/2012
(etc...various dates)
Column C
2100
1292
1828
1822
(etc...various values)
What I want to do is SUM the values in column C that are BSE and equal to or before a certain date which is in cell D56 (the date in the cell is 01/02/2011 and is formatted to be date).
For example this is one I've tried -
SUM(IF(AND(A1:A50="BSE", B1:B50<=D56)),C1:C5)
This seems like a simple task, maybe I'm just being slow...