Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In Access, In the query, add a calculated field to the SELECT clause that multiplies the Rate and Hours fields from the HourlyFees table. Set
In Access, In the query, add a calculated field to the SELECT clause that multiplies the Rate and Hours fields from the HourlyFees table. Set the caption for the calculated field as Total. Add a SQL aggregate function to the calculated field to calculate the total of the Rate field multiplied by the Hours field.
here is what I have and it is telling me I am missing the last sentence in the question.
SELECT Lawyers.FName, Lawyers.LName, Sum([HourlyFees]![Rate]*[HourlyFees]![Hours]) AS Total
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started