0

I am trying to disable the button, if two text fields are not completed.

I am using formula:

If( IsBlank(TextInput7.Text) or IsBlank(TextInput1_4.Text) , Disabled, Edit) 

This is giving me error. Any ideas?

1 Answer 1

1

Use below:

If(IsBlank(TextInput7.Text) || IsBlank(TextInput1_4.Text), Disabled, Edit) 

OR

If(Or(IsBlank(TextInput7.Text), IsBlank(TextInput1_4.Text)), Disabled, Edit) 
1
  • Both options work. :) Thansk ganesh Commented Jun 11, 2021 at 8:58

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.