QUESTION 4: SPREADSHEET
NOTE:
- Use formulae and/or functions for ALL calculations in the spreadsheet - NSC Computer Application Technology - Question 4 - 2021 - Paper 1
Question 4
QUESTION 4: SPREADSHEET
NOTE:
- Use formulae and/or functions for ALL calculations in the spreadsheet.
- Use absolute cell references ONLY where necessary to ensure... show full transcript
Worked Solution & Example Answer:QUESTION 4: SPREADSHEET
NOTE:
- Use formulae and/or functions for ALL calculations in the spreadsheet - NSC Computer Application Technology - Question 4 - 2021 - Paper 1
Step 1
Insert a function in cell F3 to determine the value that appears most often in column D.
96%
114 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
The formula to use in cell F3 is =MODE(D8:D107). This function will return the most frequently occurring value in the specified range.
Step 2
Insert a function/formula in cell F4 to determine the total value of the highest amount donated.
99%
104 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
In cell F4, you can use the formula =SUMIF(D8:D107, MAX(D8:D107), D8:D107). This will sum all values in column D that match the highest single value identified using MAX(D8:D107).
Step 3
Change the SUMIFS function in cell F5 to determine the single donations (column C) that were made in 2019 (column E).
96%
101 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
For cell F5, the correct formula is =SUMIFS(C8:C107, C8:C107, "Single", E8:E107, ">=01/01/2019", E8:E107, "<=31/12/2019"). This calculates the total of single donations made within the specified date range for the year 2019.
Step 4
Insert a function/formula in cell H8 to display the message based on card expiration and donation type.
98%
120 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
In cell H8, use this nested IF formula: =IF(C8="Monthly", IF(G8<H4, "Expired", "Remind"), IF(G8<H4, "#", "Remind")). This checks the type of donation and the expiration date to display the appropriate message.
Step 5
Insert a function of functions in cell C3 to display the code for Argentina.
97%
117 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
The formula in cell C3 should be: =CONCATENATE(RIGHT(A3, LEN(A3)-2), LEFT(A3, 2)). This concatenates the right part of the country's name with the first two characters to create the desired code.