Pulling prior month on the 1st of the month, current month on all other days.

DITTYPOP

New Member
Joined
Apr 4, 2016
Messages
3
I have a data connection to an access DB appended table and need to pull prior month data on the 1st of the month and current month data on all other days.

Table name: CI_AND_P_INVENTORY_APPEND
Field with date data: RPT_DATE

SELECT *
FROM CI_AND_P_INVENTORY_APPEND
WHERE
?

Please help, Thank you in advance.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Answer depends on how you're calling this query. If via form (as it should be) then the command button code can get the month from DatePart of the current month (in a calculated form control) and subtract 1 from it if the day of DatePart of the current month is 1. If that's not clear, research the DatePart function here http://www.techonthenet.com/access/functions/
otherwise, an expression might be required if you're doing this direct in a query. Not sure if this will work as written, but it looks good in my head;)

Code:
WHERE DatePart("m",tbl.RPT_DATE) = (DatePart("m",Date) - IIF(DatePart("d",Date)=1,1,0))
The IIF part should return 1 or 0 based on whether or not the current month day is the 1st. The criteria should then become the current month or current minus one month and get tbl values where the month part is equal to that. Note that the DatePart function has two parameters you may need to set. I also shortened your table name for my convenience.
 
Last edited:
Upvote 0
I am trying to automate this and adding parameters wouldn't help. When I change the "Date" to values in the table , (DatePart("m",tbl.RUN_DATE) ,it either brings back last 30 days or all data less 1 date Depending on RPT_DATE or RUN_DATE. How would I substitute "Date" for todays date? Today() didn't work either.
 
Upvote 0
I forgot the () part of Date ().
Glad you solved it.
 
Upvote 0
I have found in practice that although just subtracting a day on the first day of the year is good (particularly for automated reports) it is awkward for some reports, since, for example, the first day of the month could be on a Sunday and on the following day, Monday, you still want to see that final report with the entire last month's data. Would that be a concern here?
 
Upvote 0

Forum statistics

Threads
1,221,417
Messages
6,159,789
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top