Skip to main content
Nintex Community Menu Bar
Solved

If formula not working

  • July 10, 2024
  • 2 replies
  • 28 views

Forum|alt.badge.img+8

I have the following if formula references a reference field. It shows blank on all rows:

IF({{Primary_Vendor_Contact__c}} != null, "No error" , "A primary contact is not designated for this relationship")

Best answer by Brayden_Smith

My issue was, I had a UI Only field on a model that was adopting rows from another model, without querying the model, so formula fields weren’t calculating.

2 replies

Forum|alt.badge.img+13

I think you could remove the != null and it should work.

IF({{Primary_Vendor_Contact__c}},“No error”,“A primary contact is not designated for this relationship”)


Forum|alt.badge.img+8

My issue was, I had a UI Only field on a model that was adopting rows from another model, without querying the model, so formula fields weren’t calculating.