Skip to main content
Is empty checks that a field has no answer — skipped, blank text, nothing selected, no file uploaded, or unsigned (for signature blocks). This is the correct operator for “they left it blank”. Do not use Not equals or Does not contain for that case.

When to choose this


Exact behavior

Treats these as empty:
  • null / never answered
  • Empty string ""
  • Empty array [] (no multi-select choices)
No comparison value is needed — if Studio shows a value field, leave it unset. For signature blocks, Studio may label this Is not signed — same behavior: no signature captured yet.

Which field types


Blank / unanswered answers

This operator exists for blank answers — empty matches, filled does not.

Configure in Studio

1

Open a rule

LogicRules, or Branch / Add condition on a field.
2

Pick the field to watch

Company, Attachment, Signature, optional follow-up, etc.
3

Choose Is empty

On signatures: Is not signed.
4

Leave value blank

No comparison value required.
5

Add Then actions

6

Test fill then clear on Fill

Rule should toggle when answer removed.

Worked examples

Hide invoice when no company

When Company is emptyThen Hide blocks Invoice address
Typing a company name hides the rule’s effect (if no other rule applies).

Skip verification without attachment

When Attachment is emptyThen Jump to page Summary
Uploading a file disables the jump on next recompute.

Optional follow-up collapsed

When Referral code is emptyThen Hide blocks Referrer details

Unsigned waiver

When Liability waiver is not signedThen Hide submit
Pair with explanation block on canvas.

Test on fill

1

Load page without touching field

Rule on if field starts blank.
2

Provide an answer

Rule off.
3

Clear answer if field allows

Rule on again.
4

Multi-select: deselect all

Treats as empty [] — rule on.

Common mistakes

  • Using not equals X hoping blank triggers — it will not; use Is empty.
  • Using Is empty on toggle/checkbox — use Equals for unchecked state.
  • All group combining Is empty and Equals on same field without planning — often use separate rules or Any mode.

Troubleshooting

Default value may pre-fill field; hidden calculated tokens may count as answered.
Another rule may still match — check Logic Board order and last wins policy.
Partial upload states — test real Fill upload/remove cycle.
Use Any with Is empty and Equals clauses, or separate rules with clear UX copy.
Last modified on September 7, 2026