Access 2010
I have a table, t_Orders, with the following fields.. OrderNo, OpenedDate, ClosedDate.
OrderNo, OpenedDate, ClosedDate.
12345 1/1/2017 1/10/2017
12346 1/10/2017 3/5/2017
12347 3/4/2017 4/4/2017
12348 2/20/2017 3/22/2017
I need to count how may records are open per month.
Should look something like this:
Jan2017 Feb2017 Mar2017 Apr2017
2 2 3 1
Don't even know where to start with this one.
Data above is simplified, actual data is over 50k records spanning over many years.
I have a table, t_Orders, with the following fields.. OrderNo, OpenedDate, ClosedDate.
OrderNo, OpenedDate, ClosedDate.
12345 1/1/2017 1/10/2017
12346 1/10/2017 3/5/2017
12347 3/4/2017 4/4/2017
12348 2/20/2017 3/22/2017
I need to count how may records are open per month.
Should look something like this:
Jan2017 Feb2017 Mar2017 Apr2017
2 2 3 1
Don't even know where to start with this one.
Data above is simplified, actual data is over 50k records spanning over many years.