If you're having trouble with your C2 - Mastery certification exercises, make sure you can answer "Yes" to these questions before reaching out to a teacher:
Did you correctly handle character jumps in your text functions? In C2, when nesting FIND inside LEFT or MID, using +1 to skip a space or -1 to exclude it is vital. Otherwise, the platform will detect an invisible character and mark the task as incorrect.
Did you verify the argument order for your conditional statistical functions? Remember that in MAXIFS and MINIFS, the max_range (the column with the numbers, like "Sales Amount") always comes first. Also, ensure years are entered as numbers and names are wrapped in double quotes.
Did you set all required constraints in Solver? Setting the objective isn't enough; you must manually add the "int" (integer) constraint for physical quantities and verify that the comparison signs (≥, =, or ≤) match the exam premises exactly.
Did you follow the logical order for your Macros? When recording the "ENTER" macro, your first step must be to insert a new row and clear its formatting before performing a Paste Special > Transpose. If the order is wrong, the data will not be pasted into the database correctly.
If you’ve answered all these questions and you’re still having issues, check the following guide with common errors in the C2 final exam and how to solve them:
Problem #1: LEFT and MID functions are returning extra characters (like spaces).
Solution: The error usually lies in your FIND logic. To extract names dynamically, use FIND(" ", B3)+1 to start after the space, or -1 at the end to stop before it. When extracting an age (e.g., "27"), ensure your num_chars argument is exactly 2.
Problem #2: RANK.EQ is returning duplicate or incorrect ranks.
Solution: Check your second argument (the reference range). To ensure the ranking is valid for the whole list, the range must be fixed: =RANK.EQ(C36, $C$36:$C$45, 0). Also, check if the exercise requires descending (0) or ascending (1) order.
Problem #3: MAXIFS or MINIFS return 0 or an error.
Solutions:
Argument order: The first range is always the values you want to calculate (e.g., sales amount), followed by your Criteria_Range/Criteria pairs.
Date and name syntax: If filtering by a year like 2023, do not use quotes if it is a numeric value. If filtering for a name like "Lucas Campbell," quotes are mandatory.
Problem #4: PivotTable isn't showing "% of Total" or "Difference From."
Solution: Do not calculate these manually. Right-click the value in the table > "Show Values As" and select the specific calculation requested (e.g., "Difference From..." using "Furniture" as the Base Item). Ensure the original field remains in the values area if a comparison is required.
Problem #5: Solver cannot find a solution or the result is not as expected.
Solution: Review your constraints. It is common to forget the "int" (integer) constraint for physical products or to misconfigure the Objective (Max, Min, or a specific Value).
Problem #6: The Macro isn't pasting data into the correct order in the database.
Solution: When recording the macro, you must use Paste Special > Values and Transpose. Standard pasting will keep data vertical instead of horizontal. Also, remember to insert the row before pasting so the database shifts down correctly.
Problem #7: The "CLEAR" Macro button isn't cleaning the form.
Solution: When recording the "Clear" macro, select the input range and press the Delete key. Avoid using "Clear All" from the Home menu, as this may remove borders or formatting, which the platform tracks as a validation error.
Are you still having trouble with a specific C2 task? Check out our related article for more tips on advanced automation and complex model optimization!
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article