amrog
MIS
- Mar 18, 2008
- 22
I have a sheet with the following data:
A B C D E F G H M
1 Code Jan Feb Mar Apr May Jun Jul ------- Dec
2 A 10 11 1 5 9 3 10 8
3 B 4 2 33 9 1 0 12 4
4 C
5 D
6 E
7 F 13 9 0 5 8 11 9 5
I need to sum the whole table B2:M7 with the condition that code (A:A) = "B" and month 1:1 "<"& today()
I am trying to use:
SUMIFS(B2:M7;A:A;"=B";1:1;"<"&today())
the months values in 1:1 are in 1/1/2008, 1/2/2008 until 1/12/2008.
A B C D E F G H M
1 Code Jan Feb Mar Apr May Jun Jul ------- Dec
2 A 10 11 1 5 9 3 10 8
3 B 4 2 33 9 1 0 12 4
4 C
5 D
6 E
7 F 13 9 0 5 8 11 9 5
I need to sum the whole table B2:M7 with the condition that code (A:A) = "B" and month 1:1 "<"& today()
I am trying to use:
SUMIFS(B2:M7;A:A;"=B";1:1;"<"&today())
the months values in 1:1 are in 1/1/2008, 1/2/2008 until 1/12/2008.