Karma YogiKarma Yogi
Start
The Journal
Study Tracking

11 September 2026
7 min read

A
Anish Guruvelli
Karma Yogi

CAT Mock Analysis Excel Template: What It Can and Cannot Do

A spreadsheet can log a CAT mock score in ten seconds. It cannot, without real maintenance, tell you which mock is due for its next revision pass, flag a section that has silently plateaued, or keep a session linked to the specific mock it was about. Here is the column schema to use if you build one anyway, and the three specific jobs where it breaks.

A spreadsheet logs a CAT mock's score, section-wise breakdown and percentile in under a minute, and that part never breaks. Three specific jobs around that log do break, and they are the reason "cat mock analysis excel sheet" searches keep turning up generic productivity templates with nothing CAT-specific in them: chaining a revision due-date off whenever the previous pass actually finished rather than the mock date, flagging a section whose rolling average has quietly stopped moving, and keeping a study session reliably linked to the one mock instance it was actually about. None of the three is a spreadsheet limitation in principle - Excel can compute all of it. All three are limitations of maintaining formulas by hand for a year, which is the actual failure mode.

This is a narrower, mock-specific sequel to the general study-tracker-versus-Excel argument already on this site - that post covers daily session logging, streaks and heatmaps. This one is about the mock-analysis layer specifically: the part of a CAT prep tracker that has to remember which test something belongs to, and what happened to it since.

What a spreadsheet gets right here, without qualification

  • Logging one mock's numbers is trivially fast. Date, provider, overall score, overall percentile, then score/attempted/correct/percentile per section. A row, thirty seconds, done.
  • It is free and it is yours. No account, no product roadmap deciding your data model for you.
  • For under about ten mocks, none of what follows matters yet. The three failure modes below are all about accumulation - they do not show up on mock three, they show up on mock fifteen.

So the honest scope of this post is narrow: a spreadsheet is a fine mock-score ledger. It is a poor mock-analysis system once "analysis" means cross-referencing a mock against its own revision history and against every other mock's section trend.

1. Revision due-dates are a chain, and a sheet cannot chain itself

Karma Yogi's spaced-revision schedule for a mock runs R1 three days after the mock date, then R2 seven days after R1 was actually completed, R3 fourteen days after R2, then 21, 30, 45 and 60 days after each preceding round. The load-bearing word is after R2 was actually completed - not after the mock date. A round finished five days late pushes every later round back by the same five days.

In a spreadsheet, that is a lookup chained onto a lookup: R2's due date needs R1's actual completion date, which itself needs to be typed in when it happens, not assumed from a schedule. Model it wrong - due dates as mock-date-plus-3/10/24/45/75/120/180, which is what a fixed-offset formula naturally produces - and the sheet systematically overstates how overdue you are the moment a single round slips, which is exactly the failure this site's own excel-vs-app post documents from personal use. The correct version needs one column recording when each round actually finished and a formula referencing the previous row's actual date, not the mock's. Multiply that by twenty mocks and seven possible rounds and you are maintaining 140 potential due-date cells, each dependent on a completion date somebody has to remember to type in.

2. A plateau does not announce itself in a raw score column

This is the specific failure that a raw per-mock score column hides, and it is not hypothetical - it is this site's own logged data. Across 20 real CAT mocks, DILR moved from an 18.4 average across the first five attempts to 20.6 across the last five - two marks in three months - while VARC and Quant gained 8.2 and 8.8 over the same span. A straight line through all 20 DILR scores against the date has a slope of +0.16 marks per 30 days, r-squared 0.000. The overall mock score, meanwhile, climbed the whole time, because VARC and Quant were carrying it.

Section First 5 mocks avg Last 5 mocks avg Change
VARC16.624.8+8.2
Quant26.835.6+8.8
DILR18.420.6+2.2
Overall (of 198)61.881.0+19.2

Catching that DILR flatline requires a rolling section average (a five-mock moving window, recomputed every time a new mock is added) compared against a threshold, or at minimum a chart per section you actually look at rather than one combined score. A spreadsheet can absolutely compute a rolling average - =AVERAGE(OFFSET(...)) or a plain shifted range - but the range has to be extended by hand every week, and a range that silently stops at row 18 while you are on row 22 does not throw an error. It just quietly shows a trend that stopped updating a month ago, which is the actual reason this went unnoticed for roughly two months in this site's own log.

3. Linking a session to one specific mock instance has no natural key in a flat sheet

Analysing a mock is rarely one sitting. A real revision pattern is: log the mock, analyse it the same evening, revise it again three days later, again a week after that. Each of those is a separate study session, and each has to point back at the same mock - not "a DILR mock," a specific one, dated, with its own scores.

Karma Yogi's data model makes this an explicit link: every session that carries a revisionRound also carries a linkedTestId and linkedTestType pointing at exactly one FullMock or SectionalTest record, so R0 (the test itself), R1, R2 and so on for the same mock can all be found by that one ID regardless of how many weeks apart they happened. A spreadsheet has no built-in equivalent - you invent an ID scheme yourself (a "Mock #" column, typed by hand into both the Tests sheet and every related Sessions row) and it has no referential integrity: a typo, a copy-paste that shifts one row, or a mock you renamed after the fact breaks the join silently. The formula does not error. It just quietly matches nothing, or worse, matches the wrong mock.

If you are building a CAT mock-analysis sheet anyway, build it like this

Two sheets, not one wide one, so the joins above are at least possible:

Sheet Columns Why
TestsMock ID (never reused), date, provider, test name, overall score, overall percentile, then per section: score, attempted, correct, percentileMock ID is the join key every revision row and every analysis session needs
RevisionsMock ID, round (0-7), date this round was actually completed, notesOne row per pass. Due date for round N+1 is a formula reading round N's own completion date, not the mock date

Rules that matter more than the column list itself: never reuse or renumber a Mock ID once assigned; record the date a round finished, not the date you meant to do it; and keep raw score and percentile in separate columns per section - never average across providers, since an identical section score has landed anywhere from the 65th to the 90th percentile on different papers in this site's own log, a 25-point spread on the same number of marks.

Where this is weak

The DILR-plateau numbers are one aspirant's log, not a general finding. 20 mocks over three months shows what a raw-score view hid in one case. It does not establish how often this happens to other CAT candidates, or with what frequency a plateau would actually be missed rather than noticed on a quick scan.

I have not run a live comparison of what actually ranks for "cat mock analysis excel sheet." A search attempted for this post returned results dominated by the unrelated "cat" (the animal) rather than the exam, which made a clean SERP read impossible today. The reasoning above - that CAT-specific mock-analysis content is thin and mostly generic-template or coaching-forum advice - is inference from the adjacent "study tracker excel template" gap already documented on this site, not a verified live result for this exact phrase.

None of the three failure modes are impossible in a spreadsheet, only effortful to maintain without them silently going stale. A disciplined spreadsheet user with fewer mocks, or more patience for formula maintenance, may never hit any of this.

Karma Yogi keeps the Mock ID link, the revision due-dates and the per-section rolling trend as product features rather than formulas you maintain - see why mock scores plateau and what the evidence supports about the revision schedule itself for the rest of this argument.

End of essay

- Anish Guruvelli

Common questions

Can I track CAT mock analysis in Excel?
Yes, for logging scores it works well - date, provider, overall score and percentile, then per-section score, attempted, correct and percentile. It gets harder once "analysis" means chaining revision due-dates off when the previous round actually finished, flagging a section whose average has plateaued, or linking a session reliably to one specific mock among twenty.
What columns should a CAT mock analysis sheet have?
Two sheets. A Tests sheet with a permanent Mock ID, date, provider, overall score and percentile, then score, attempted, correct and percentile per section. A Revisions sheet with Mock ID, round number 0-7, the date that round actually finished, and notes. The Mock ID is what lets the two sheets join.
Why is a revision schedule hard to maintain in a spreadsheet?
Because each round's due date depends on when the previous round was actually completed, not on the mock date. A formula computing due dates as mock-date-plus-a-fixed-offset is simpler to write but wrong the moment one round runs late, and it will systematically overstate your backlog from that point on.
How do I know if a CAT section has plateaued from mock data?
A raw per-mock score column will not show it if other sections are improving, since the combined total keeps climbing. A rolling average per section - five mocks at a time, recomputed as new mocks are added - is what actually surfaces a flatline. In one real 20-mock log, DILR moved just 2.2 marks across three months while the overall score rose 19.2, entirely carried by the other two sections.
Why do my mock analysis formulas silently stop updating?
Because a range reference in a rolling-average or chart formula has a fixed end row, and it does not throw an error when new rows are added past it - it just keeps showing a trend that stopped a month or two ago. Whole-column references reduce this but don't eliminate the maintenance burden of extending conditional formatting and pivot ranges.
How do I link a study session to a specific mock in a spreadsheet?
By inventing your own ID scheme - a Mock ID column you type into both the Tests sheet and every related session row - since spreadsheets have no built-in foreign-key relationship. It works until a typo, a renamed test, or a shifted row breaks the match silently, which a formula will not flag as an error.
Is a free CAT mock tracker template as good as a paid one?
For the actual job of logging a score, yes - free and paid templates do the same arithmetic. Neither a free nor paid static template solves the three structural issues here (due-date chaining, plateau detection, session-to-mock linking) unless it is actively maintained, which is a time cost independent of price.
Should I track raw score or percentile for CAT mocks?
Both, in separate columns, never averaged into one number. An identical raw section score has landed at percentiles 25 points apart on different mock papers in this site's own logged data, because papers vary in difficulty. Storing only one of the two makes it impossible to tell an improving score from an easier paper.
How many mocks before an Excel sheet stops being manageable?
There is no fixed number, but the three failure modes here - due-date chains, plateau detection, session linking - all get proportionally worse as mock count rises, since each adds more chained cells and more potential join points. Under ten mocks, none of this is likely to matter yet.
What is the difference between this and a general study tracker spreadsheet?
A general study tracker logs daily sessions, streaks and total hours - the subject of a separate post on this site. This one is specifically about the mock-analysis layer: linking repeated revision passes back to one test instance and tracking per-section trends across many mocks, which is a narrower and more relationship-heavy problem than daily logging.
Can a spreadsheet auto-flag which mock is due for revision today?
It can, with a formula comparing today's date against each mock's next due date computed from its last completed round. The formula itself is not hard to write once; keeping it correct as rounds get logged late, skipped, or done out of order over months is the part that tends to break down.
Does percentile vary between mock providers for the same score?
Yes, and this is one of the clearest reasons to keep score and percentile as separate stored columns rather than treating them as interchangeable. This site's own log shows an identical raw DILR score of 15 landing at the 65th, 76th and 90th percentile across three different provider papers.
Keep Reading

More on CAT preparation.

All CAT guides
CAT Preparation· 10 min read

Overlearning in CAT Prep: When More Practice Stops Working

A 218-student trial found that drilling material you have already mastered boosts recall for about a week, then the advantage collapses - and in the second experiment, studying more material to a lesser degree actually beat overlearning less material, at every retest. CAT prep runs for months, not a week.

Read
Mock Analysis· 10 min read

Error Log for CAT Mocks: Eight Categories, Seven Passes

An error log is one row per mistake classified by why it happened, not a list of question numbers. Here is the eight-category taxonomy, the row nobody logs, and how the log becomes the actual content of every revision pass from R1 to R7 - instead of redoing a paper you already know the answers to.

Read
CAT Mocks· 11 min read

How Many Hours to Study for CAT? 20 Mocks, One Honest Answer

I logged 335 hours and sat 20 CAT mocks in the same three months, so I can check the question directly instead of guessing at it. The relationship is much weaker than the advice implies: elapsed preparation time explains 14% of the variation in any single mock, and the days available between two mocks predict the score change at r = 0.04, which is nothing.

Read
Study Tracking· 10 min read

How to Track Study Hours: A Method, and Its Real Limits

Log one row per session, at the moment it ends, with minutes that were measured rather than remembered. That much is worth doing. What tracking will not do is raise a score on its own - in my own log, elapsed prep time explains 14% of the variance in my mock results and my weakest section did not move at all.

Read