Hi @jayendra
In terms of validations, you could use a text label to test and then use the notification feature for the submit button.
Create a text label and have the Text=if( IsBlank(txtsecfunded.text) , "this is blank" , "this is not blank")
- This way during testing you can see easily if your IsBlank is working correctly
- I see that you put !IsBlank in your example, which means if it is NOT Blank then ask them to insert information? I think this is meant to be just IsBlank as below:
Once you have established that your formula is working as it was intended, you can then use the notify feature to display a notice to the user when they click the Submit button:
onselect =
if(
IsBlank(txtsecfunded.text),
Notify("Please enter the Secfunded", NotificationType.Error),
SubmitForm(formname)
)
I set up a test example of this:


Which was successful in Submitting the new value.
If I change the check to IsBlank(Label2.text)

Hope this helps!