Good afternoon
I have two separate If statements that need to go under the Color property of a text input.
If(Len(dtacrdContainer_CAE.Text) = 11, RGBA(0, 18, 107, 1), Color.Red)
If(LookUp(glContainers, ContainerId = Upper(Self.Text), true), Color.Black, Color.Red)
All I need to do is 'join' them together so that they don't error. As you can see, they both do different things. Every syntax I've tried writing gives me an error. I know it's going to be simple but I don't know how to do it.