Apply another “&&” operator to the other conditions to check ColA.
Also, your description is not terribly clear / does not make sense. It’s not clear why Col C is appearing twice in your description, and whether ColD is also a condition to check. It is also not clear what is supposed to happen if the If statement returns true or false.
Assuming you just want to return a Boolean true/false. Use either:
Or(
ThisItem.ColA = "True" && ThisItem.ColB = TextInput1.Text,
ThisItem.ColA = "True" && ThisItem.ColC = TextInput1.Text,
ThisItem.ColA = "True" && ThisItem.ColD = TextInput1.Text)
And(ThisItem.ColA = "True",
Or(
ThisItem.ColB = TextInput1.Text,
ThisItem.ColC = TextInput1.Text,
ThisItem.ColD = TextInput1.Text
)
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.