I’m creating a query and trying to multiply 2 fields from the same table to get an amount (IE 100x.10=10). In design view (screen shot attached) I can’t figure out how to make it happen. But it does have the option to switch to sql view. When I switch to sql view it gives me:
SELECT “Table_Companies”.“Company Name”, “Table_Companies”.“USDOT #”, “Table_Companies”.“Type”, “Table_Companies”.“Status”, “Table_Companies”.“City”, “Table_Companies”.“State”, “Table_Companies”.“Zip Code”, “Table_Sales_2”.“Product”, “Table_Sales_2”.“Date Bound”, “Table_Sales_2”.“Commissionable Premium”, “Table_Sales_2”.“Agency Commission”
FROM “Table_Sales_2”, “Table_Companies”
WHERE “Table_Sales_2”.“Company ID” = “Table_Companies”.“Company ID”
I’m trying to add a third field in the query with the results of multiplying these two fields:
“Table_Sales_2”.“Commissionable Premium”, “Table_Sales_2”.“Agency Commission”
For clarification:
“Table_Sales_2”.“Commissionable Premium” - Is the gross premium paid to the agency
“Table_Sales_2”.“Agency Commission” - Is the percentage of the gross premium paid to the agency
I’m wanting to add a field with the result of the multiplication of the above two tables such as:
“Table_Sales_2”.“Agency Commission Due”
Any help you can provide (either in design view or sql view) would be greatly appreciated!