I am currently trying to implement a new database system for work, but I've come to a brick wall. If anyone can help I will be extremely grateful because I've been pulling my hair out for hours. Here's the problem:
I have a query in which there is a field called amount paid. In a new query I want a field with a running total of the amount paid to date. I've tried many versions of the same code, but keep getting the same error message:
The expression you entered as a query parameter produced this error: 'The object doesn't contain the Automation object 'Tenant number?.''
Here's the code:
SELECT [Rent account for specific tenant].Date, 12*(DatePart('yyyy',[Date])-2008)+DatePart('m',[Date]) AS Monthnumber, DatePart('d',[Date]) AS Daynumber, [Rent account for specific tenant].[Amount paid], [Rent account for specific tenant].[Payment method], [Rent account for specific tenant].Notes, [Rent account for specific tenant].[Actual rent due], DSum([Amount paid],"Rent account for specific tenant","(12*(DatePart('yyyy',[Date])-2008)+DatePart('m',[Date]))<" & [Monthnumber] & "" & "OR ((12*(DatePart('yyyy',[Date])-2008)))+DatePart('m',[Date])=" & [Monthnumber] & "" & "AND DatePart('d',[Date])<=" & [Daynumber] & "") AS [Total paid]
FROM [Rent account for specific tenant]
GROUP BY [Rent account for specific tenant].Date, 12*(DatePart('yyyy',[Date])-2008)+DatePart('m',[Date]), DatePart('d',[Date]), [Rent account for specific tenant].[Amount paid], [Rent account for specific tenant].[Payment method], [Rent account for specific tenant].Notes, [Rent account for specific tenant].[Actual rent due];
If anyone has any ideas or alternate methods please let me know.
Thank you very much, Alex.
I have a query in which there is a field called amount paid. In a new query I want a field with a running total of the amount paid to date. I've tried many versions of the same code, but keep getting the same error message:
The expression you entered as a query parameter produced this error: 'The object doesn't contain the Automation object 'Tenant number?.''
Here's the code:
SELECT [Rent account for specific tenant].Date, 12*(DatePart('yyyy',[Date])-2008)+DatePart('m',[Date]) AS Monthnumber, DatePart('d',[Date]) AS Daynumber, [Rent account for specific tenant].[Amount paid], [Rent account for specific tenant].[Payment method], [Rent account for specific tenant].Notes, [Rent account for specific tenant].[Actual rent due], DSum([Amount paid],"Rent account for specific tenant","(12*(DatePart('yyyy',[Date])-2008)+DatePart('m',[Date]))<" & [Monthnumber] & "" & "OR ((12*(DatePart('yyyy',[Date])-2008)))+DatePart('m',[Date])=" & [Monthnumber] & "" & "AND DatePart('d',[Date])<=" & [Daynumber] & "") AS [Total paid]
FROM [Rent account for specific tenant]
GROUP BY [Rent account for specific tenant].Date, 12*(DatePart('yyyy',[Date])-2008)+DatePart('m',[Date]), DatePart('d',[Date]), [Rent account for specific tenant].[Amount paid], [Rent account for specific tenant].[Payment method], [Rent account for specific tenant].Notes, [Rent account for specific tenant].[Actual rent due];
If anyone has any ideas or alternate methods please let me know.
Thank you very much, Alex.