Vlad -- thank you for the response. For background purposes, I actually did use the suggested query properties to get to the desired format.
However, I use VBA (via form) to re-create the query based on different user inputs. Thus, each time when the query is re-generated, the query lost the "Fixed" (1 decimal) settings/properties. Hence, I'd like to include the correct expression into my VBA code to resolve this issue.
Given this forum is focused on "queries" (not programming), I simply chose to provide a query (vs. VBA) example. Anyhow, below is the VBA element (with slightly different format and field references). That's from my actual application (vs. using simplified demo version).
Code:
strSQL = "SELECT Q100_Scoring_Input.TIER_1_ID_H, Q100_Scoring_Input.HYPOTHESES_H, " & _
"ROUND(Avg(Q100_Scoring_Input.[" & strModel & "_SCORE]), 1) AS [AVG_" & strModel & "_SCORE] " & _
"FROM Q100_Scoring_Input " & _
"GROUP BY Q100_Scoring_Input.TIER_1_ID_H, Q100_Scoring_Input.HYPOTHESES_H " & _
"ORDER BY ROUND(Avg(Q100_Scoring_Input.[" & strModel & "_SCORE]), 1) DESC;"
Any thoughts/recommendation with tweaking it to output the desired format?