AI Agent Hub
Back to skills
📁

Excel Formula Wizard (WPS Compatible)

Office Efficiency Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @douease/excel-formula-wizard according to https://skillhub.cn/install/skillhub.md.

About this skill

Problem

  • Many Excel and WPS users do not need a generic function list; they need a formula with correct references and a compatible version that can be pasted directly into a cell.
  • Version differences matter: Excel 365 / 2021 and WPS differ on XLOOKUP, FILTER, LET, and LAMBDA, so older environments may need VLOOKUP, INDEX+MATCH, or helper columns.
  • A formula that merely works is not enough if the user cannot modify it, or does not know when to switch to pivot tables, Power Query, or file-level processing.

How It Works

  • Clarify the data structure first: column names, values, starting row, and target cell; request sample rows or a file instead of guessing ranges.
  • Deliver usable formulas: prefer single-function solutions and provide both modern and legacy versions for common tasks like XLOOKUP, SUMIFS, COUNTIFS, SUMPRODUCT, TEXTSPLIT, DATEDIF, NETWORKDAYS, and RANK.
  • Explain the pieces: lookup range, condition range, return column, and fallback behavior so the user can adjust the formula later.
  • Escalate when formulas are not enough: suggest pivot tables, Power Query, or Python-based file processing for large or complex data work.

Boundaries

  • Dynamic array functions spill; if the area below or to the right is occupied, #SPILL! appears; reference the full spill range with A2#.
  • In WPS, test =XLOOKUP or =LAMBDA(x,x*2)(3) to check support, then fall back to helper columns or standard formulas.
  • For large sheets, avoid whole-column references like A:A and heavy volatile functions such as OFFSET or TODAY; prefer helper columns over deep nesting.

Use Cases

  • When reconciling monthly supplier sheets, match two detail tables by ID and flag amount mismatches with a formula compatible with older WPS.
  • When building a sales report, sum revenue and count orders by region, product, and date using both modern and legacy Excel formulas.
  • When cleaning data, extract birthdate and gender from ID numbers or split combined text fields into usable columns with compatible options.
  • When debugging formulas, find why VLOOKUP returns #N/A, #SPILL! appears, or cells show text instead of results, and fix the references.

Best For

  • Sales operations staff who summarize regional sales sheets by product, channel, and date each week
  • Finance specialists who reconcile supplier statements and calculate billing cycles, age, or work days monthly
  • Data assistants who clean customer fields, extract ID-based information, and produce deduplicated lists
  • IT support staff who maintain shared workbook formulas and troubleshoot Excel or WPS compatibility errors