Skip to main content
Nintex Community Menu Bar
Solved

Disable a field based on Calculated Field

  • December 20, 2021
  • 3 replies
  • 48 views

Forum|alt.badge.img+8

This feels like an incredibly easy answer but I can't seem to find it. Basically I want to disable a panel based on if a calculated field is NOT empty. I can do it if it has certain data can do it if it's  empty but I can't figure out how to do if it has any data in it 

 

I'm sure this is going to be the easiest question ever answered. Thanks in advance

Best answer by michaela

If you can get it to work when when it's empty, then simply negate the logic with the not() function:

 

not(isNullOrEmpty(myCalcField))

3 replies

Forum|alt.badge.img+8
  • Author
  • Rookie
  • December 21, 2021
Perhaps not? Anyone have any suggestions?

Forum|alt.badge.img+7
  • Novice
  • Answer
  • December 22, 2021

If you can get it to work when when it's empty, then simply negate the logic with the not() function:

 

not(isNullOrEmpty(myCalcField))


Forum|alt.badge.img+8
  • Author
  • Rookie
  • December 22, 2021
Perfect thank you Michaela! Simple solution staring me in the face.