control to hold a single value in a report. (access 2002)
please see attached..
what will be the right control to place where the marked green box is.
the query in the 'REPORT' whose property is highlighted is as below (simplified, leaving out the complex conditions)
SELECT field1, Field2, Field3,Field4
FROM Book_Table
WHERE Condition1 AND condition2
ORDER BY Field2 DESC;
The new field to introduce below the above 'REPORT' control, would be of the below format:
SELECT avg(Field3)
FROM Book_Table
WHERE Condition1 AND condition2 heaader.png
what will be the right control to place where the marked green box is.
Usage of controls is not arbitrary. What do you want to see in the control? It looks to me like you probably want another subreport.
25112
ASKER
>>What do you want to see in the control?
The new one will be an average.. so a single value.
the existing report (3 next to each other ) is a 3 column list..
if it is a single value, do you recommend subreport for any value/reason?