






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
WGU - C268 Spreadsheets - Useful formula guide
Typology: Exams
1 / 10
This page cannot be seen from the preview
Don't miss anything!







1 /
containing the appropriate loan information as the arguments for the function you use. Cells C20-C67 in the "Payment" column are populated with the payment amount from cell C15.: PMT=(c13/12,c12,c11) Payment
period 0 (cell F19) by the loan interest rate (cell C13) divided by
amortization table. [2 points]: Drag D19 down to D67 to complete column
difference between the payment amount (cell C20) and the interest amount (cell D20) for period 1. Construct your formula in such a way that it can be reused to complete the "principal" column of the amortization table.: =C20-D
the amortization table.: Drag E20 down to E67 to complete column
the balance for period 0 (cell F19) and the principal amount for period 1 (cell E20). This formula is reusable. The balance is always calculated as the difference between the balance from the previous period and the principal amount for the current period.: =C20-D
amortization table.: drag F20 down to F67 to complete column
(cell C15) by the term of the loan (cell C12).: =C15*C
all interest paid in the "Interest" column of the amortization table.- : =SUM(D20:D67)
2 / Add D20 range through D
correct, calculate the total interest paid in cell G14. This is the difference between the Total Amount Paid over the course of the loan and the original Loan Amount. Notice the negative sign associated with the original Loan Amount.: =G12--C two minus cancel out the minus from C
the car in for a new car. You believe that you can sell your car for $4000. Will this cover the balance remaining on the car in period 36? Answer either "Yes" or "No" in cell G from the drop-down menu.: No G36 = 5,193.87 $4,000 is not enough
employee earns a time bonus if the project's "Hours Worked" are fewer than the "Estimated Hours" and if the work "Quality" is greater than 1.: - =AND(E161) And used when all logical functions are true. (E16 greater than C16, AND H16 greater than 1)
employee earns an outcome bonus if the difficulty of a job is greater than 3 or if the quality of their work is equal to 3.: =OR(G16>3,H16=3) when either logical functions need to be true. (G16 greater than 3, OR H16=
4 /
Reference the appropriate field in table 1 as your range and the "Employee" names in table 3 as your criteria.: =COUNTIF($D$16:$D$35,G39) Counts the occurrences in range D16-D35, looks for the value in G39.
Reference the appropriate field in table 1 as your range and the "Employee" names in table 3 as your criteria.: =SUMIF($D$16:$D$35,G39,$E$16:$E$35) Adds the absolute range of D16-D35, looks for the value in G39, and adds the hours of absolute range of E16-E
Reference the "Employee" field in table 1 as your range, the "Employee" names in table 3 as your criteria, and the "Total Pay" field in table 1 as your sum_range.: =SUMIF($D$16:$D$35,G39,N16:N35) looks in table range D16-D35, looks for value from G39, Adds the number from table range N16-N
5 /
from 2003 to 2010, using the data in table 1 (range C12:J12). Format the
7 /
Searches for the $ sign in cell D9 and displays position of character
statement template in cell D9. Refer to the location of the "$" character you calculated in cell D12 as the "num_char" argument for your function.: =LEFT(D9,9) I spent $ Looks at D9 starting from the LEFT to display the first 9 characters
statement template in cell D9. Refer to the location of the "$" (in cell D12)—ad-justed by adding 1—as the "start_num" argument. Use the difference between the location of the "#" character (in cell D11) and the "$" character (in cell D12) as the "num_char" argument.: =MID(D9,10,14) at merchant # Searches the middle of D9, displays the characters in at position 10 and number of characters you want to display
template in cell D9. Use the difference between the length of the state-ment template (in cell D10) and the location of the "#" character (in cell D11) as the "num_char" argument.: =Right(D9,5) on: Examines D9 from the right, to display up to 4 characters
Stamp" in cell B18. Copy and paste your function down to complete the "Month" column of the table.: =month(B18) Excel apparently knows what to do with the data in B
8 / Drag down to the bottom of table to reveal all "8s" (for August).
in cell B18. Copy and paste your function down to complete the "Day" column of the table.: =day(B18) Excel apparently knows what to do with the data in B18. Drag the formula down to the bottom of the column DAY.
in cell B18. Copy and paste your function down to complete the "Hour" column of the table.: =Hour(b18) Excel apparently knows what to do with the data in B18. Drag the formula down to the bottom of the column HOUR.
Stamp" in cell B18. Copy and paste your function down to complete the "Minute" column of the table.: =minute(b18) Excel apparently knows what to do with the data in B18. Drag the formula down to the bottom of the column MINUTE.
Stamp" in cell B18. Copy and paste your function down to complete the "Second" column of the table.: =SECOND(B18) Excel apparently knows what to do with the data in B18. Drag the formula down to the bottom of the column SECOND.
2013 or earlier) in cell J18 to create the "Date" by combining the "Month" in cell E18 with the "Day" in cell F18. "Date" should use this syntax: "Month/Day." Your function should, therefore, also insert the "/" character between the "Month" and "Day." Copy and paste your formula down to complete the "Date" column of the table.: =concatenate(E18,"/",F18)
10 / correlations between the sales of each type of product and event attendance. Use appropriate ranges from the "Past Event" worksheet for your calcula-tions.: =CORREL('Past Events'!$C$4:$C$103,'Past Events'!D4:D103) =CORREL('Past Events'!$C$4:$C$103,'Past Events'!E4:E103) =CORREL('Past Events'!$C$4:$C$103,'Past Events'!F4:F103)
dance? Select the correct answer from the drop-down list in cell L32.: Food Close to 1.
forecast for each type of product if expected attendance at the future event is 18000 people. Reference cell I13 (the attendance forecast) for your calcula-tions.: =FORECAST($I$13,'Past Events'!D4:D103,'Past Events'!C4:C103) =FORECAST($I$13,'Past Events'!E4:E103,'Past Events'!C4:C103) =FORECAST($I$13,'Past Events'!F4:F103,'Past Events'!C4:C103) Remember your X value for the forecast formula should match the X data type, example Attendance and past Attendance numbers. =forcase(X,knownY, knownX)