Two fucntions cant read same bolean variable at same time

Hello People
Whenever widget with two text boxes is refreshing, bind fucntions for those two text boxes uses same bolean value from widget blueprint and only one fucntion read its accual state while other is reading false all the time … do i have to make bolean variable for each function for text boxes? those function are called at same time right? so variable cannot be read/called twice or more times (if more functions) at one time/frame?
what could be work around? i woudl have to make 30 bolean variable it doeasnt make sense ;p

You should be able to use the same variable for as many things as you want. Try creating a separate Function with your boolean variable plugged into the Output. This way your boolean is updated every time your GetText function is run. then just plug that function into wherever you need that boolean.

If that doesn’t work, I wonder what would happen if you attached a NOT node to the GetText function that always returns false.