Skip to main content
Nintex Community Menu Bar
Question

identical ui-only formula fields - one works, one doesn't.

  • July 9, 2024
  • 4 replies
  • 14 views

Forum|alt.badge.img+18

These two fields:

<field id="password_check" uionly="true" displaytype="FORMULA" label="Verification" readonly returntype="BOOLEAN" defaultvalue="false">
  <formula>{{{password}}}=={{{PIN__c}}}</formula>
{{{email}}}=={{{Support_Email__c}}}

which reference these field pairs:



The password_check field works prefectly, but the email_check field never makes it into the model (no matter what I try)!

Why would that be happening?

4 replies

Forum|alt.badge.img+6
  • Nintex Employee
  • July 9, 2024

Matt,

I think that this is addressed in the next release of Skuid (Banzai Update 3), but if you want to try something in the meantime, try surrounding those email fields with single quotes:

<formula>'{{{email}}}'=='{{{Support_Email__c}}}'</formula>

Forum|alt.badge.img+18
  • Author
  • July 9, 2024

Thanks, J.


If I wrap with single quotes now, will I have to unwrap after update 3?


Forum|alt.badge.img+6
  • Nintex Employee
  • July 9, 2024

I don’t think so. You should be good either way after Update 3.


Forum|alt.badge.img+18
  • Author
  • July 9, 2024

great. Thanks!