Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Last Financial Years Data? 1

Status
Not open for further replies.

MikeAuz1979

Programmer
Aug 28, 2006
80
AU
Hi,

Using access 2000 I'm kinda stumped on how to restrict daily information to just last financial years data. (Assuming an Australian fin year of 1-July to 30-Jun)

My table looks like:

Date Site Amount
01-jan-00 1 1001
02-jan-00 1 987
01-jan-00 2 7899
etc.

Right now I just have a hardcoded criteria of Between #1 Jul 2006# And #30 Jun 2007# on the Date field, but does anyone else have any ideas how this can be acheieved dynamically so this query will continue to show last financial years data even in future years?

Thanks for any help
Mike
 

Try something like this:
Code:
Between DateSerial(Year(Date())-1,7,1) And DateSerial(Year(Date()),6,30)

TomCologne
 
Mike I hope you do not have a column called Date as it's a reserved word and likely to cause problems such as conflict with the Access function Date(). For the purpose of this reply I will name it FinDate.

Tom your solution assumed the calendar year and financial year are the same. This will be true until 31 December. From 1st January you will be returning the current financial year and not the previous one.

Try this modified version of your code:
Code:
WHERE (
MONTH(DATE()) > 6 AND FinDate Between DateSerial(Year(Date())-1,7,1) And DateSerial(Year(Date()),6,30)
)
OR
(
MONTH(DATE()) < 7 AND FinDate Between DateSerial(Year(Date())-2,7,1) And DateSerial(Year(Date())-1,6,30)
)
Alternatively you could try using an IF to test the current month:
Code:
Between DateSerial(Year(Date())-(iif(MONTH(DATE()>6,1,2),7,1) And DateSerial(Year(Date())())-(iif(MONTH(DATE()>6,0,1),6,30)
 
Thanks Cherio, great work. I had to tweak some brackets but it tested okay for various dates.

Between DateSerial(Year(Date())-IIf(Month(Date())>6,1,2),7,1) And DateSerial(Year(Date())-IIf(Month(Date())>6,0,1),6,30)

Mike
 
Mike

Thanks for the star. I am glad I was able to help.

Cheerio
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top