COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
1st Edition
ISBN: 9780357392676
Author: FREUND, Steven
Publisher: CENGAGE L
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
error_outline
This textbook solution is under construction.
Students have asked these similar questions
In cell B12, create a nested formula using the AVERAGE and ROUND functions to first find the average number of clothing sets sold in January (the range B6:B9), and then round the answer to 0 digits.
Copy the formula from cell B12 to the range C12:N12.
5. Using the Max function, write a formula in cell F7 of Top10_Pivot Sheet to find the maximum "Sum of Percentage" value. Do not select the Grand Total range in the function.6. Using the MATCH function only, write a formula in cell G7 of Top10_Pivot Sheet to find the Row Number of Maximum Sum of percentage.7. Using the INDEX function only, write a formula in cell H7 to find the state name having the maximum "Sum of Percentage". The formula should include the value(row number) that is calculated in G7.
In cell B13, create a formula without a function using absolute references that subtracts the values of cells B5 and B7 from cell B6 and then multiplies the result by cell B8. Copy the formula from cell B13 to the range C13:H13.
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- The HAVING clause applies to columns and expressions for individual rows, while the WHERE clause is applied to the output of a GROUP BY operation. True or False ?arrow_forwardIn cell F7, create a formula that calculates the salary for Joan Dickinson. Her salary is calculated by adding her base salary (cell B7) to her total bonus (cell E7). (Hint: Do not use the SUM function.) To calculate the salary for all of the employees, copy the formula you created and the formatting in cell F7 into the range F8:F10. Kelly wants to view employees’ bonuses as a percentage of their base salary. In cell G7, enter a formula without using a function that divides Joan’s total bonus (cell E7) by her base salary (cell B7).arrow_forwardIn this exercise, you modify the Gross Pay application from this chapter’s Focus lesson. Use Windows to make a copy of the Gross Solution folder. Rename the copy Gross Solution-Functions. Open the Gross Solution.sln file contained in the Gross Solution-Functions folder. Change the two independent Sub procedures to functions named GetWeekly and GetTwicePerMonth. Modify the code so that the btnCalc_Click procedure (rather than the two functions) displays the gross pay in the lblGross control. Save the solution and then start and test the application. Need this in VB please. Code given: Option Explicit OnOption Strict OnOption Infer Off Public Class frmMain' Independent Sub procedures. Private Sub btnCalc_Click(sender As Object, e As EventArgs) Handles btnCalc.Click' Calls independent Sub procedures to calculate and display the gross pay. End Sub Private Sub btnExit_Click(sender As Object, e As EventArgs) Handles btnExit.ClickMe.Close()End Sub Private Sub txtSalary_Enter(sender As…arrow_forward
- Which of the following options represent a function that is entered in the highlighted cells to return the total value for a given item (AAA) and size (S)? A B 9 UNIT SOLD Size SOLD Price ($) 10 AAA 45 10 11 BBB M 21 20 12 AAA S 20 65 13 BBB M 41 40 14 15 Item Size TOTAL_Value 16 AAA 1750 a) =SUMPRODUCT((A10:A13=A16),(B10:B13=B16),C10:C13,D10:D13) O b) =SUMPRODUCT((A10:A13=A16)*(B10:B13=B16)+C10:C13,D10:D13) O c) =SUMPRODUCT((A10:A13=A16)*(B10:B13=B16)*C10:C13) d) =SUMPRODUCT((A10:A13=A16)*(B10:B13=B16)*C10:C13,D10:D13)arrow_forwardmysql Select the first 10 characters of each customer's address. (Hint: You can use one of the built-in functions that are explained in functions file). (bonus, if you want to get higher mark, you can answer it, if not ,you can upload the solution file without it )arrow_forwardplease code in python use pandas for this Write a function to perform the following operation:Increase the grade of the house by 1 if the sqft of the house is greater than 0 and less thanequal to 400. If the total sqft of the house is greater than 400, increase the grade of the houseby 2.After creating the above function, which syntax will be using when using apply function to runthe above created function in the dataset?A. data.apply(your_function_name(arg1))B. data.apply_fun(function_name())C. data.app(data)D. None of the abovearrow_forward
- Rewrite the code below to display one column called "Customer Full Name" (In which the first and last name are separated by a space) instead of the two separate columns. Leave the referred column as is. Do not use the "CONCAT" Function SELECT firstname, lastname, c.lastname "Referred" FROM customers c, customers r Where c.referred = r.customer#;arrow_forwardClick cell C9 and insert a VLOOKUP function that looks up the code in cell B9, compares it to the codes and types of art in the range B2:C6, and returns the type of art. Copy the function in cell C9 to the range C9:C54. Hide column B that contains the codes.arrow_forward8. Using the Min function, write a formula in cell F10 of Top10_Pivot Sheet to find the minimum "Sum of Percentage" value. Do not select the Grand Total range in the function. Screenshots attached thanksarrow_forward
- 1. Create the GET_INVOICE_DATE procedure to obtain the customer ID, first and last names of the customer, and the invoice date for the invoice whose number currently is stored in I_INVOICE_NUM. Place these values in the variables I_CUST_ID, I_CUST_NAME, and I_INVOICE_DATE respectively. When the procedure is called it should output the contents of I_CUST_ID, I_CUST_NAME, and I_INVOICE_DATE. 2. Create a procedure to add a row to the INVOICES table. 3. Create the UPDATE_INVOICE procedure to change the date of the invoice whose number is stored in I_INVOICE_NUM to the date currently found in I_INVOICE_DATEarrow_forwardBelow is the code for a procedure that will accept a Customer ID as an input parameter and display the Customer ID, Customer Surname and Customer Address. Review the code, then answer the questions that follow. create or replace procedure sp_customer_details (c_id IN CUSTOMER.cust_id%TYPE,customer_details out VARCHAR2)ISBEGINSELECT 'CUSTOMER ID:' || c.cust_id || ', Surname:'|| c.cust_sname || ',ADDRESS:' ||c.cust_addressinto customer_detailsfrom CUSTOMER cwhere c.cust_id = c_id;END; Q.1 Briefly discuss the advantages of using the %TYPE attribute in the code. Q.2 Create the code to execute the procedure with exception handling if no customer data is found. Use customer ID C115 in your code.arrow_forwardQ1. Write a SELECT statement that returns these columns from the Invoices table: The invoice _total column A column that uses the ROUND function to return the invoice_total column with 1 decimal digit A column that uses the ROUND function to return the invoice_total column with no decimal digits Q1. Write a SELECT statement that returns these columns from the Invoices table: • The invoice_total column • A column that uses the ROUND function to return the invoice_total column with 1 decimal digit • A column that uses the ROUND function to return the invoice_total column with no decimal digits invoice_total one digit 3813.33 3813.3 zero_digits 3813arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- COMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LNp Ms Office 365/Excel 2016 I NtermedComputer ScienceISBN:9781337508841Author:CareyPublisher:Cengage
- Programming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage LearningA Guide to SQLComputer ScienceISBN:9781111527273Author:Philip J. PrattPublisher:Course Technology Ptr
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:9780357392676
Author:FREUND, Steven
Publisher:CENGAGE L
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:9781337508841
Author:Carey
Publisher:Cengage
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:9781337102124
Author:Diane Zak
Publisher:Cengage Learning
A Guide to SQL
Computer Science
ISBN:9781111527273
Author:Philip J. Pratt
Publisher:Course Technology Ptr
dml in sql with examples; Author: Education 4u;https://www.youtube.com/watch?v=WvOseanUdk4;License: Standard YouTube License, CC-BY