I'm new here so hope I landed in the right forum.
I've a small Access db which I use to track financial activities for a house I rent out.
here are the table [tRental] fields:
pk ID AutoNumber
*PaymentDate Date/Time * Renamed from Date - Thanks to MajP
Detail Short Text
GrossIncome Currency
Expenditure Currency
NetPosition Calculate [GrossIncome]-[Expenditure]
Document Attachment
Being in the EU I am formatted to use the dd/mm/yyyy
and to be honest, it does as a db all I want it to. However, I've a couple of challenges.
I've made a basic query that, having entered two dates, returns the sum's of GrossIncome, Expenditure and NetPosition - fine but clunky.
I've two challenges:
Firstly the UK tax year begins 6/4/yyyy and ends 5/4/yyyy+1
from a post hereabouts I (modified) this formula from 2012 which returns the correct tax year ending 5/4/yyyy
Tax Year Ending: IIf([PaymentDate]>CVDate("5/4/" & Year([PaymentDate])),Year([Payment Date])+1,Year([Payment Date]))
However, whist that displays nicely in a query to give me a year, when I add a further column Gross Income : Sum([tRental]![GrossIncome])
it all fall apart with a error message Your query does not include the specified 'Date' as part of an aggregated function - erm help?
OR plagiarised from elsewhere;
Public Function fyear(rDate As Date) As Date
If Month(rDate) < 4 Or _
(Month(rDate) = 4 And _
Day(rDate) < 6) Then
fyear = Year(rDate) - 1
Else
fyear = Year(rDate)
End If
fyear = fyear & fyear + 1
End Function
I made a new query to 'rename' the [PaymentDate] to [rDate] {rDate : [PaymentDate]} and a second column in the query Tax Year : fyear([rDate]) to hopefully invoke the module of the same name fyear) and that promptly falls apart with an error message Unidentified function 'fyear' in expression - Okay - I'm out of my depth here...
So what am I trying to achieve?
an on the fly spreadsheet view which looks to the [tRental]![PaymentDate] decides which tax year it falls within and provide the sum of [Gross Income], [Expenditure], [Net Position] by tax year - like this
Year | Gross Income | Expenditure | Net Position
2019 | £2.50 | £2.00 | £0.50
2020 | £5.00 | £1.50 | £3.50
Second challenge is almost identical except to provide a spreadsheet view this time detailing the rental year, which looks to the same [tRental] table, finds the first (oldest) record with a +ve balance in the GrossIncome field (not £0.00) looks at that records date and adds a year to it. Now that's a year 1/1/2019 to 31/12/2020 not the anniversary yyyy+1 - example not literal year that! could be it's 30/10/2018 to 29/10/2019
I know, I don't want much do I? To be honest, I can live with the: Between [Enter Start Date] And [Enter End Date] query but am keen to learn more and as I say it feels a tad clunky and only returns one year at a time - which yes, I could cut and paste into another table for future reference, as it's most unlikely to change after the end of the year etc... but doesn't seem particularly 'smart'.
Any takers? Buy you a beer if you sort it (and you're passing in the Netherlands)
I've a small Access db which I use to track financial activities for a house I rent out.
here are the table [tRental] fields:
pk ID AutoNumber
*PaymentDate Date/Time * Renamed from Date - Thanks to MajP

Detail Short Text
GrossIncome Currency
Expenditure Currency
NetPosition Calculate [GrossIncome]-[Expenditure]
Document Attachment
Being in the EU I am formatted to use the dd/mm/yyyy
and to be honest, it does as a db all I want it to. However, I've a couple of challenges.
I've made a basic query that, having entered two dates, returns the sum's of GrossIncome, Expenditure and NetPosition - fine but clunky.
I've two challenges:
Firstly the UK tax year begins 6/4/yyyy and ends 5/4/yyyy+1
from a post hereabouts I (modified) this formula from 2012 which returns the correct tax year ending 5/4/yyyy
Tax Year Ending: IIf([PaymentDate]>CVDate("5/4/" & Year([PaymentDate])),Year([Payment Date])+1,Year([Payment Date]))
However, whist that displays nicely in a query to give me a year, when I add a further column Gross Income : Sum([tRental]![GrossIncome])
it all fall apart with a error message Your query does not include the specified 'Date' as part of an aggregated function - erm help?
OR plagiarised from elsewhere;
Public Function fyear(rDate As Date) As Date
If Month(rDate) < 4 Or _
(Month(rDate) = 4 And _
Day(rDate) < 6) Then
fyear = Year(rDate) - 1
Else
fyear = Year(rDate)
End If
fyear = fyear & fyear + 1
End Function
I made a new query to 'rename' the [PaymentDate] to [rDate] {rDate : [PaymentDate]} and a second column in the query Tax Year : fyear([rDate]) to hopefully invoke the module of the same name fyear) and that promptly falls apart with an error message Unidentified function 'fyear' in expression - Okay - I'm out of my depth here...
So what am I trying to achieve?
an on the fly spreadsheet view which looks to the [tRental]![PaymentDate] decides which tax year it falls within and provide the sum of [Gross Income], [Expenditure], [Net Position] by tax year - like this
Year | Gross Income | Expenditure | Net Position
2019 | £2.50 | £2.00 | £0.50
2020 | £5.00 | £1.50 | £3.50
Second challenge is almost identical except to provide a spreadsheet view this time detailing the rental year, which looks to the same [tRental] table, finds the first (oldest) record with a +ve balance in the GrossIncome field (not £0.00) looks at that records date and adds a year to it. Now that's a year 1/1/2019 to 31/12/2020 not the anniversary yyyy+1 - example not literal year that! could be it's 30/10/2018 to 29/10/2019
I know, I don't want much do I? To be honest, I can live with the: Between [Enter Start Date] And [Enter End Date] query but am keen to learn more and as I say it feels a tad clunky and only returns one year at a time - which yes, I could cut and paste into another table for future reference, as it's most unlikely to change after the end of the year etc... but doesn't seem particularly 'smart'.
Any takers? Buy you a beer if you sort it (and you're passing in the Netherlands)
Last edited: