Copy your query to a new query, change to sql view, and then paste this in its place. Should work.
Code:
SELECT
T1.CustomerID,
TC.FirstName & " " & TC.LastName AS Custname,
TE.OrderID,
T1.TypeOfOrder,
TE.ItemID,
TE.TrophyBaseStyle,
TE.TrophyQuantity,
TE.ColumnStyle,
TE.ColumnColor,
TE.ColumnLength,
IIf([ColumnStyle]="Wide",0.15,0.11)*[ColumnLength] AS ColumnPrice,
TE.Topper,
2 AS TopperPrice,
TE.CupStyle,
TE.CupStylePrice,
TE.Trim,
TE.TrimQuantity,
[TrimQuantity]*0.75 AS TrimPrice,
TE.BasePrice,
TE.AssemblyPartsPrice,
TE.[Personalization/SpecialInstructions],
[TopperPrice]+[CupStylePrice]+[TrimPrice]+[BasePrice]+[AssemblyPartsPrice]+[ColumnPrice] AS TrophyPrice,
[TrophyPrice]*[TrophyQuantity] AS ExtendedTrophyPrice,
[ExtendedTrophyPrice]*0.06 AS TrophyTaxes,
[ExtendedTrophyPrice]+[TrophyTaxes] AS TrophyTotal
FROM
((tblOrders AS T1
INNER JOIN tblEngravingTrophiesDetails AS TE
ON T1.ID = TE.OrderID)
INNER JOIN tblCustomer AS TC
ON T1.CustomerID = TC.ID)
WHERE (((T1.TypeOfOrder)="Trophies"));