how do i calculate values between two dates in access

G

Guest

I have details of investments made with maturity date starting from 2004. I
want to get a report for investments made in 2006/2007 and investments that
are maturing in 2006/07.
 
S

Stefan Hoffmann

hi Ahmed,
I have details of investments made with maturity date starting from 2004. I
want to get a report for investments made in 2006/2007 and investments that
are maturing in 2006/07.
Create a query and filter your maturity date. Use as criteria

BETWEEN DateSerial(2006, 1, 1) AND DateSerial(2007, 1, 1)


mfG
--> stefan <--
 
J

Jeff Boyce

If your details include a date/time field for [DateOfInvestment], use a
query that selects those records in the date range. Then base your report
on your query.

If you have a [DateMaturing] field, or better still, a way to calculate it
from [DateOfInvestment] and [MaturesAfterNNDays].

If your details have none of these, I don't know how you'd select the
correct records.

--
Regards

Jeff Boyce
Microsoft Office/Access MVP


Microsoft IT Academy Program Mentor
http://microsoftitacademy.com/

Microsoft Registered Partner
https://partner.microsoft.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top