how do i change this to not optional?
To change a field from optional to required, you need to use the "Required to Run" toggle in the Prompt Editor: 1. Open the Prompt Editor for your enrichment 2. Find the field you want to make required 3. Enable the "Required to Run" toggle next to that field 4. Save your prompt configuration This ensures the enrichment will only run when this field contains data.
Am I blind? I can't seem to see a required to run toggle
Instead of using the "Required to Run" toggle, you can use Conditional Runs to make a field required:
1. Scroll down to "Run Settings" in your enrichment panel
2. Click on "Conditional Run" or "Use AI"
3. Create a formula that only runs if the field has a value (e.g., NOT(ISBLANK(/YourFieldName))
)
4. This ensures the enrichment only runs when data exists in that field
This approach achieves the same result as making a field required.
!{{Find Work Email}}?.email && !{{Find Work Email (2)}}?.email && !{{Find Work Email (3)}}?.email && {{Company Domain - Latest Experience}} <-- would that work? wanting it to run if the first three don't find anything AND there has to be something in company domain
Yes, your formula !{{Find Work Email}}?.email &&!{{Find Work Email (2)}}?.email &&!{{Find Work Email (3)}}?.email && {{Company Domain - Latest Experience}}
should work correctly. It will only run the enrichment when all three work email fields are empty AND there's a value in the company domain field.