Thread: If statement
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default If statement

Hmmm...

This post is a lot different from your other post.

Try this...

=SUM(SUMIF(A6:A19,{"V","D","M"},F6:F19))

--
Biff
Microsoft Excel MVP


"Debra Reid" wrote in message
...
I have been reading many threads regarding formulas what I am attempting to
do is create a formula that will take the range of A6:A19 and if there is
a
V, D, or M in that cell then pick up the number in column F6:F19 on the
same
row.

Example A7 has V, A10 has D, and A18 has M so I need it to pick of the
value
of F7+F10+F18 for a sum.

Is there a faster way than an IF statement for each row?