IF Formula

L

Lisa

I need help with the formula.

A B C D E
1 Jan Feb Mar Apr May
2 10 5 15 7 8

If K2 is Mar I need to sum A2 thru C2. If K2 is May I need to sum A2 thru E2.

Thank you in advance.
 
G

Gary''s Student

If the only possible options are Mar and May then:

=IF(K2="Mar",SUM(A2:AC2),SUM(A2:E2))

If K2 can have any month, then you would need something with the MATCH
function
 
S

Stefi

=SUM(A2:INDIRECT(ADDRESS(2,MATCH(K2,A1:E1,0),4,1)))
If you have all months, adjust ranges!

Regards,
Stefi

„Lisa†ezt írta:
 
W

Wondering

This formula returns an empty cell if K2 is not Mar or May. If you want it
to return 0, change the "" to 0

=IF(K2="Mar", SUM(A2:C2),if(K2="May",SUM(A2:E2),""))
 
L

Lisa

That worked! Thank you Stefi.

Stefi said:
=SUM(A2:INDIRECT(ADDRESS(2,MATCH(K2,A1:E1,0),4,1)))
If you have all months, adjust ranges!

Regards,
Stefi

„Lisa†ezt írta:
 
Top