Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Could someone give me the formulas for 8, 13, 14. 8. In cell F13, enter another

ID: 397468 • Letter: C

Question

Could someone give me the formulas for 8, 13, 14.

8. In cell F13, enter another IF function that tests whether the value in cell D13 is equal to an empty text string. If true, return an empty text string. If false, return the price of the product ID entered in cell D13 9. In cell H13, enter another IF function to test whether the value in cell D13 is equal to an empty 10. Copy the formula in the range E13:F13 to the range E13:F20. Use AutoFill to copy the formula 11. In cell H22, calculate the sum of the values in the range H13:H20. text string. If true, return an empty text string; otherwise, calculate the value of the price of the item multiplied by the number of items ordered. from cell H13 into the range H13:H20. 12. In cell H23, calculate the sales tax equal to the total cost of the items ordered multiplied by the 13. In cell H24, calculate the shipping cost of the order by inserting an IF function that tests whether 14. In cell H25, insert an IF function that tests whether the value of cell H22 is greater than 250 (the 15. In cell H27, calculate the total cost of the order by summing the values in the range H22:+124 sales tax rate in cell G10 the value of cell B16 is an empty text string. If it is, return the value 0; otherwise, use a lookup function to return the shipping cost for the indicated shipping method minimum order needed to qualify for free shipping). If it is, return a value of cell H24; otherwise return a value of O and subtracting the value of cell H25.

Explanation / Answer

8. Formula =IF(ISBLANK(D13),"",D13)

13. Formula = IF(B16=" ",0,VLOOKUP(B16,F4:G7,2,FALSE))

14. Formula =IF(H22>250,H24,0)