View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
chubbs chubbs is offline
external usenet poster
 
Posts: 1
Default How do I set up an IF formula with multiple qualifiers?

I want to see how many people attended an event and then attribute it to that
specific sales person. In the raw data, the attended column is Y or N and
there is a column for the assigned sales guy. Here is my code that is not
working:

=SUM(IF((AND(F:F="Tommy Wheeler",'2007 regs '!G:G="Y")),1,0))

This output should tell me how many people registered within Tommy's sales
territory. Any help would be appreciated!