AFI AFI

Not Equal To

Estimated reading: 2 minutes Updated August 1, 2026

Use Not Equal To in AFI conditional logic to fire an integration when a submitted form value is anything except the value you configure. It’s the inverse of Equal To, useful for excluding internal test submissions, blocking specific email domains, or routing every record except one.

How it works

When a form is submitted, AFI compares the value of the field you pick against the value you enter. If they’re different, the rule passes and the integration runs. If they match exactly, AFI skips this destination for that submission.

The comparison is case-sensitive and a literal string match: same rules as Equal To, just inverted.

Example

Goal: add every signup to Mailchimp except internal test submissions from [email protected].

Setup:

  1. Open your Mailchimp integration in WP Admin → AFI → All Integrations and click Edit.
  2. Open the Conditional Logic panel.
  3. Click Add Condition.
  4. In the field dropdown, pick the email field.
  5. Set the operator to Not Equal To.
  6. In the value box, type [email protected].
  7. Click Save Integration.

Screenshot: AFI Conditional Logic panel with one condition row: field dropdown set to "your-email", operator dropdown set to "Not Equal To", value field showing "qa@yourcompany.com"

Now every submission gets sent to Mailchimp except the ones from your QA test address.

Notes

  • Case-sensitive. [email protected] and **@*********ny.com are different values. Both would pass this rule.
  • Empty values pass. A submission where the field is empty does not equal [email protected], so the rule passes and the integration runs. To block empty submissions too, add a second rule using [Not Equal To] with a blank value, joined with All semantics.
  • Excluding multiple values. Add multiple Not Equal To conditions and set Must Match Condition to All. The integration runs only when none of them match.

Related operators