Right now I had to build a report that allowed the people to check for
gross outliers in their data input.
short I am looking at 2.5* std dev + -
anyway I used 2 dummy variables in the query the report is tied to.
start date and end date. This pops up an input box for these values
and they put in 11/01/08 and 11/31/08 and it runs the report showing
the outliers.
I watched and everyone is looking at month not date
Now I was thinking instead fof this in the query under recDATE
is there a way of just asking for a month and year and then comparing
the recDATE without day in it?
so one check for a new input of CKdate being 11/08
Later I might even do something first to ask month or range.
gross outliers in their data input.
short I am looking at 2.5* std dev + -
anyway I used 2 dummy variables in the query the report is tied to.
start date and end date. This pops up an input box for these values
and they put in 11/01/08 and 11/31/08 and it runs the report showing
the outliers.
I watched and everyone is looking at month not date
Now I was thinking instead fof this in the query under recDATE
>=[start_date] And <=[end_date]
the recDATE without day in it?
so one check for a new input of CKdate being 11/08
Later I might even do something first to ask month or range.
Comment