View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
FLKulchar FLKulchar is offline
external usenet poster
 
Posts: 80
Default Combining IF, ANd and SUM functions in a formula


"RJanz" wrote in message
...
I'm trying to add the amounts in a column where two other columns match
the
set criteria, however, it is comparing the first cell only to the text
specified. Does anyone know how I overcome this or correct the formula
below?

=IF(AND(Source!$A$2:$A$9999="X",Source!$C$1:$C$999 9="Y"),SUM(Source!$G$1:$G$9999),0)


Here we go: in what cell is your SUM totaled, say A:10000 and C10000..

Then: IF (AND
(SOURCE!$A$10000="X",Source!$C$10000="Y"),SUM(Sour ce!$G$1:$G$9999),0)

FLKulchar