I am trying to get the average, minimum, and maximum from a table and display the asnwers in text boxes on my report.
Here is my code:
gstrSQL = "SELECT Avg(SData.Test1) AS AvgScore, Min
(SData.Test1) AS MinScore, Max(SData.Test1) AS MaxScore"
gstrSQL = gstrSQL & "FROM...