I have to create an access report for tracking orders which is then send as a pdf.
To keep track of the generated reports I created a table (let's call it table a) with an index, a date and the name of the person submitting the report.
What I want to do now is adding the highest index of table a to the report.
I thought that
=Max([table a]![index])
would do the trick, but it gives me a pop-up asking for the parametervalue of [table a]![index].
What could be the problem?
thx in advance