Help

Best practices for getting cleaner results from PromptCell.

The strongest PromptCell prompts describe the job, the desired output, and any important rule you want preserved. Start with the business task, then add constraints only when you need them.

Bestfor specific jobs like clean, summarize, extract, and match
Useextra ranges when the answer needs grounding from another sheet
Startwith ASK and only force GEM or CLD if needed

Best practices

State the business outcome

Say what should happen, not just the model trick. For example: “Return only overdue invoices with owner and amount.”

Pass the range that matters

PromptCell only sees the values you pass into the formula. Include other sheets or ranges when the job depends on them.

Pick the output shape first

Use ASK for one answer, ASKR when the output must keep the same shape, ASKT for a new table, and ASKX for lookup-style matches.

Keep instructions concrete

Short prompts with a clear desired result usually beat long multi-paragraph instructions.

Useful examples

Clean imported data

=ASKR("Trim spaces, standardize state abbreviations, and keep blanks blank", A2:D10)

Summarize sales rows

=ASK("Summarize this opportunity row for a weekly sales review", A2:G2)

Match across sheets

=ASKX("Return the matching renewal owner", A2, Renewals!A:A, Renewals!D:D)

Return a new table

=ASKT("Return only customers with churn risk, include header row", A2:H200)