R
RobSDSU
I have and Excel 2003 document with two columns of data. Column A holds the
date an event occurred (mm/dd/yyyy formatted as a date). Column B holds text
indicating the outcome of the event.
I need to find a total of each specific outcome during a specific period of
time (for instance during December 2006 and January 2007).
I'm trying to identify each record that meets certain criteria and if it
does, I'll put a 1 in Column C for one outcome, Column D for another outcome,
etc. Then I'll total the columns and have totals for each outcome.
I've tried the following nested IF statement in Column C but Excel doesn't
seem to recognize the date parameters properly:
=IF(A1<11/30/2006,0,IF(A1>2/1/2007,0,IF(B1="NOT ELIGIBLE",1,0)))
Is there a special way I should be entering the date in the expression? Or
is there another expression that could be used? Writing custom VBA code is
not an option.
Thank You!
Rob
date an event occurred (mm/dd/yyyy formatted as a date). Column B holds text
indicating the outcome of the event.
I need to find a total of each specific outcome during a specific period of
time (for instance during December 2006 and January 2007).
I'm trying to identify each record that meets certain criteria and if it
does, I'll put a 1 in Column C for one outcome, Column D for another outcome,
etc. Then I'll total the columns and have totals for each outcome.
I've tried the following nested IF statement in Column C but Excel doesn't
seem to recognize the date parameters properly:
=IF(A1<11/30/2006,0,IF(A1>2/1/2007,0,IF(B1="NOT ELIGIBLE",1,0)))
Is there a special way I should be entering the date in the expression? Or
is there another expression that could be used? Writing custom VBA code is
not an option.
Thank You!
Rob