Ok, I am having trouble with this equation. I have (4) rows for text entries that have a numeric association depending on what you input. The equation I have does not SUM all four rows. With each text input of "I"=100
,"P"=86
,"N"=63
with a sum dependant on what was input.
=SUM(IF(A4:D4="I",100)+IF(A4:D4="P",86)+IF(A4:D4="N",63,0))
I should have the number 400
in E4
with "I"
entered in A4:D4
, or 344
in E4
with "P"
entered in A4:D4
.
Thank you for any help you can give.
KC