I have a check sheet that contains values for several different items. I have created a form, based on the check sheet, that allows me to review or to enter data into a table for these values. I have a query that I use to return the average of the entered values for each item based on all of the entries for an item. I have placed a list box on the form next to each item that displays that average value. I have also placed a refresh button on the form to update the averages whenever I enter a new record. The problem I have is that the list boxes round the numbers to two decimal places when I need all three.
I have searched for a solution to this and all of them seem to be to use the format() feature in the row source field for the list box, but that won't work for me because there is already something there like this "SELECT Qry_SLD_Avg.[Avg_Of_Step_102_Positive_Side_C1] FROM Qry_SLD_Avg;". I have also made sure to use single, fixed, and 3 decimal places in the table and the query. The data in the query displays 3 decimal places so it has to be with the list boxes.
So how do I get the list box to display all three decimal places instead of rounding up to two?