| # | Prompt | Purpose | Expected output | Verification note |
| 1 |
Write an Excel formula that calculates GST-inclusive price from a base price in A2 and GST rate in B2. |
Automate GST-inclusive pricing. |
A single formula like =A2*(1+B2). |
Test on a known base price and rate. |
| 2 |
Write an XLOOKUP formula to find a customer's credit limit from a Customer ID in column A. |
Automate a customer data lookup. |
An XLOOKUP formula referencing the Customer table. |
Confirm the lookup table range is correct and locked with $. |
| 3 |
Write a formula to calculate the number of days between an invoice date in A2 and today. |
Automate an ageing calculation. |
A formula using TODAY()-A2. |
Check the result updates correctly as the date changes. |
| 4 |
Write a SUMIFS formula to total sales where Region is 'North' and Month is 'April'. |
Automate a two-condition sales total. |
A SUMIFS formula with two criteria pairs. |
Compare the total to a manual filter+sum check. |
| 5 |
Write a formula to flag any row in column D where the value exceeds 10% of the column total. |
Automate a materiality flag. |
An IF formula comparing D2 to SUM($D:$D)*10%. |
Verify the total reference is absolute so it doesn't shift when copied. |
| 6 |
Write a nested IF formula to grade transactions as Small, Medium or Large based on amount thresholds I provide. |
Automate transaction size classification. |
A nested IF or IFS formula with your thresholds. |
Confirm the thresholds match your actual business rule. |
| 7 |
Write a formula that returns 'Yes' if a value in A2 exists anywhere in list B2:B100, otherwise 'No'. |
Automate a duplicate/match check across two lists. |
A formula using COUNTIF or ISNUMBER(MATCH()). |
Test with a value known to exist and one known not to. |
| 8 |
Write a formula to calculate compound interest given principal in A2, rate in B2, and years in C2. |
Automate a compound interest calculation. |
A formula like =A2*(1+B2)^C2. |
Confirm the rate is entered as a decimal or percentage as expected. |
| 9 |
Write a formula to extract only the numeric part from a mixed text-and-number cell in A2. |
Automate cleanup of a mixed-format field. |
A formula using TEXTJOIN, MID or a regex-style approach. |
Test on several different mixed formats before trusting it. |
| 10 |
Write a formula to convert a date in A2 into the financial year it falls under (April–March). |
Automate financial-year tagging. |
A formula using IF and MONTH/YEAR logic. |
Confirm the FY start month matches your jurisdiction's convention. |
| 11 |
Write a formula to rank salespeople by total sales in column B, highest first. |
Automate a performance ranking. |
A formula using RANK or SORT-based logic. |
Check for tied ranks and confirm the tie-handling behaviour. |
| 12 |
Write a formula that returns the last value entered in a column that has some blank cells. |
Automate finding the latest data point. |
A formula using LOOKUP or INDEX/MATCH with 2. |
Test on a column with several trailing blanks. |
| 13 |
Write a formula to calculate running (cumulative) total of monthly sales in column B. |
Automate a cumulative total column. |
A formula using an expanding range like SUM($B$2:B2). |
Confirm the anchor cell doesn't shift when copied down. |
| 14 |
Write a formula to split a full name in A2 into first name and last name in separate cells. |
Automate name splitting. |
Formulas using LEFT/RIGHT/FIND or TEXTBEFORE/TEXTAFTER. |
Test on names with middle names or extra spaces. |
| 15 |
Write a formula to convert a number into Indian currency format with commas (e.g., 12,34,567). |
Automate Indian-style number formatting. |
A custom number format code, not necessarily a formula. |
Confirm it displays correctly for both small and large numbers. |