BCIS 3610 University of North Texas Healthy Myles Fitness Center Excel Project
help with the project. I dont have any idea how to do this. Open the tblLocation table, and then delete the Downtown record (LocationID 335). Save and close the tblLocation table. (Hint: if a message warning that you are about to delete 1 record appears, click Yes.)Create a new query in Design View based on the tblClient table. Add the FirstName, LastName, BirthDate, and Gender fields, in that order, to the query. Save the query as qryClientBirthday, run it, and then close it. Create a new query in Design View based on the tblClient, tblBilling, and tblTrainer tables. Save the query as qryClientsAndTrainers, and then do the following:Add the LastName field from the tblClient table to the query.Add the LastName field from the tblTrainer table to the query.Add the StartDate, EndDate, Sessions, and Amount fields, in that order, from the tblBilling table to the query. Save and run the query, and then close it.Create a new query in Design View that uses the tblTrainer table, and then do the following: Add the LastName, Specialty, Certification, HireDate, and Minors fields, in that order, to the query design. Add criteria to the Certification field to select records that contain the value NASM. Save the query as qryTrainerNASM, run it, and then close it.In the Navigation pane, copy the qryTrainer query and paste it in the navigation pane, rename the copied query as qryTrainer2015, open it in Design view, and then do the following: Add criteria to the HireDate field to select records with contracts that begin on or after January 1, 2015. Hide the TrainerID field so it does not appear in the query results but remains in the query design. (Hint: Make sure you hide this field in Design View, not in Datasheet View.)Save and run the query, and then close it.In the Navigation pane, copy the qryTrainer query and paste it in the navigation pane, rename the copied query as qryTrainerNSCAMinors, open it in Design view, and then do the following: Add criteria to the query to select records with the Certification field value NSCA-CPT and the Minors field value Yes.Sort the records in ascending order by the LastName field.Move the Minors field so it appears to the right of the Certification field in the query design.Save and run the query, and then close it.In the Navigation pane, copy the qryTrainer query and paste it in the navigation pane, rename the copied query as qryTrainerNATAOrMinors, open it in Design view, and then do the following:Add criteria to the query to select records with the Certification field value NATA or records that indicate that the trainer accepts clients who are minors. Save and run the query, and then close it. Open the qryTrainerBilling query in Datasheet View. Change the font size for the datasheet to 12 pt.With the qryTrainerBilling query still open in Datasheet View, add a total row to the query datasheet. In the total row, use the SUM function to total the values in the Amount field, and use the AVG function to average the values in the Sessions field. Widen the Sessions field to display the result in the total row (approximate width 18.8) Save and close the qryTrainerBilling query.Create a new query in Design View that is based on the tblBilling and tblClient tables, and then do the following:Add the ClientID and LastName fields from the tblClient table to the query.Add the Sessions and Amount fields from the tblBilling table to the query.Add a total row to the design grid, and group the query results by the LastName field values.In the total row, use the SUM aggregate function to calculate the sum of the Amount field values. Set the caption of the Amount field to Total Amount. (Hint: Do not type the period.)In the total row, use the SUM aggregate function to calculate the sum of the Sessions field values. Set the caption of the Sessions field to Number of Sessions. (Hint: Do not type the period.)Save the query as qryClientTotals. Run the query, and then close it. Open the qryClientBilling query in Design View and update it as described below:Add a calculated field with the title SessionCost to the end of the query that calculates the cost per session. The formula will calculate the Amount field value divided by the Sessions field value. (Hint: The division symbol is the / symbol.) Use Cost per Session for the calculated field’s caption property.Format the SessionCost field as currency.Move the SessionCost field to the left of the FirstName field.Sort the records first in descending order by the SessionCost field values, and then in ascending order by the LastName field values.Save and run the query, and then close it.