Wild guess follows since you gave no details on what you want to sum,
whether you are using a date field and extracting the year and month from
the date field or if you have a Year field and a Month field. Also, where
do you want to do this - in the report's record source (a query) or in the
report layout?
SUM (IIF (Year([SomeDate]) = 2006 AND Month([SomeDate]) > 6,[The Field to
Sum],Null))
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..
Supe said:
Can you do a SumIIf with more than one paramete?. I want to do a sum
where
the year is 2006 AND the months are July through December.