Forum Discussion
Formatting for Visible
I am having trouble getting the formatting correct. I have a "choice" field in a list on sharepoint. I am trying to make an "if" statement that looks at that field such as:
If(ThisItem.'RequestType'="Commission Invoice", true, false)
but it's giving me an error (I believe because the RequestType field is a choice field, not text? Any suggestions? THank you
adamsellsnj Use below formula for Visible property in Power apps:
If(ThisItem.'RequestType'.Value = "Commission Invoice", true, false)
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- adamsellsnjCopper Contributor
ganeshsanap thank you. If I want to embed another if statement in there, so 2 pieces of criteria have to be met to be true, or it’ll show fake, how would I. Do that?
adamsellsnj You can use AND, OR functions or similar operators to combine multiple conditions in formula.
Check documentation: And, Or, and Not functions in Power Apps
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.