Validation--popup to save still comes up

I have a field that when I hit save a popup comes up saying that they should type in a data in that field. I used

@If (fld_descproblem_1 = “”; @Failure(“Please add a brief description”); @Success)

in the Input Validation of that field. The pop-up works but when I close that pop-up another popup comes up asking me if I want to save it or not. What I need it to do is that if the field is empty it will not save and the cursor will go to fld_descproblem_1. THANKS!

Subject: Validation–popup to save still comes up

Do you have a close statement in your Save button?

Subject: Save Button formula

Put this in your Save button:

@If(@Command([FileSave]);@Command([FileCloseWindow]);“”)

Subject: RE: Save Button formula

With this code it closes the screen right away. I need it to return the cursor back to the field it needs fill up not close it. Thanks.

Subject: RE: Save Button formula

Lawrence understood your problem and gave you a good answer. Please try it before you come back for more.