158 useful answers · Page 6 of 7

Google Sheets: page 6

Use formulas, clean imported data, combine tables, and understand calculation errors.

Search this topic

How do I write a small custom calculation with LAMBDA in Google Sheets?

LAMBDA lets you name an input and describe what to do with it. For example, =LAMBDA(distance,distance*1.609344)(5) converts five miles to 8.04672 kilometers. The value in the final parentheses supplies the input; omitting it leaves a standalone LAMBDA uncalled. Names must be valid identifiers, not cell addresses. For ordinary one-off arithmetic, a direct multiplication formula may be easier to maintain.

How do I make a running total with SCAN in Google Sheets?

Use =SCAN(0,B2:B10,LAMBDA(total,amount,total+amount)) to produce a running total for a numeric column. Zero is the opening balance; substitute another starting number if appropriate. The first LAMBDA input holds the accumulated result, and the second holds the next amount. SCAN returns every intermediate total, so leave room for a column of results and preserve the intended transaction order.

Why does ISBLANK say a Google Sheets cell is not empty when it looks blank?

ISBLANK tests whether a cell actually contains nothing. A space, hidden character, or formula returning an empty string still counts as content, so =ISBLANK(A2) returns FALSE in those cases. Inspect the formula bar before deleting anything. If your rule deliberately treats a formula's empty-string result as blank, a comparison such as =A2="" may match your intended check better.

Source checks for these answers: September 21, 2026. Product instructions and local requirements can vary.