sumif equivalent in Access

H

Huson

is there an equivalent to sumif in Access. I very much appreciate any help. I
am using Office 2000
 
F

fredg

is there an equivalent to sumif in Access. I very much appreciate any help. I
am using Office 2000

No SumIf but you could use Sum() with criteria.
=Sum(IIf([SomeField] = "XYZ Co.",[Amount],0))
 
Top