I have column A with date values formatted as mm/dd/yyyy. I am trying to sum the values of column B if A >=DATE(2012,1,1) AND
mm/dd/yyyy
=SUM(B:B) sums
=SUM(B:B)
You haven't got your SUMIF in the correct order - it needs to be range, criteria, sum range. Try:
SUMIF
=SUMIF(A:A,">="&DATE(2012,1,1),B:B)