Good day experts! Need your help on what is the if statement formula if the textbox has value. To give you a brief context:
If I click the Submit button and the linktextbox has value, it should show my dialog box, if blank, then it will navigate to next screen.

This is what Im using but not working properly:
If(
IsBlank(LabelWaiver)=true,
Navigate('Success Screen'),
Set(
disclaimer2,
true
)
)