Create your first project
Upload your first Excel to the platform, open the in-browser editor and save a version.
A mental guide to decide whether to ask for LAMBDA or the JS sandbox. Spoiler: it depends on whether the logic is a pure formula or needs control flow.
If you can write it as an Excel formula, use LAMBDA. If you need a loop, regex, or to process text character by character, use JS. LAMBDA lives inside the file (portable to desktop Excel). JS lives in the app (re-runnable from the Functions panel).
LAMBDA cases: applying VAT, calculating commissions, capped discounts, fixed currency conversion, range-based scoring, lookups with conditions. Anything you'd solve in Excel with nested IF, MIN, MAX, VLOOKUP, LET, etc. — but as a single reusable function.
JS cases: counting unique words in a cell, extracting emails from free-text, parsing dates in mixed formats, deduping with custom rules, normalizing names (Juan / juan / JUAN → Juan), Levenshtein distance, custom-rule grouping. Anything you'd solve in VBA with a For Each loop.
Iterate rows + transform a column → JS (data.map). Reusable formula with a few parameters → LAMBDA. Filter + project columns → JS (data.filter().map()). Conditional logic in a single cell → LAMBDA. Regex / parsing → JS. Match / lookup across sheets → native lookup_column tool, not LAMBDA or JS.
LAMBDA is saved as a workbook Named Range → if you export the .xlsx, it travels with it. Another user in desktop Excel sees the same function. JS scripts are stored in the SaaS database, tied to the project. If you export the .xlsx, the scripts don't travel — but they remain available in the project's Functions panel.
Nothing stops you from using both in the same project. For instance: use a JS script to clean and dedup names in column A, then a LAMBDA Saludo to generate ="Hello " & A2. The JS preps the data, the LAMBDA formats it.
The assistant knows this decision and picks for you. If you say "make X work", the AI chooses LAMBDA or JS based on what fits, explains it in the reply, and saves it to Functions so you can see it. To force one: "...using LAMBDA" or "...with JS".
Open ExcelEmpowers and follow these steps on your own Excel.
Create free account ← Browse more tutorials