
Announcements
Hello Community,
I have the next scenario:
- We have a different columns that I would like to set the DisplayMode property to Edit or View based on the next code:
If(
And(dte_StartDate_1.SelectedDate >= Today()),
DisplayMode.Edit, DisplayMode.View,
And(
Or(TabList1_3.Selected.Value = "Hold" || TabList1_3.Selected.Value = "Approved"),
DisplayMode.Edit,
DisplayMode.View
)
)But not works, if I added separately works well, like the next example:
If(dte_StartDate_1.SelectedDate >= Today(), DisplayMode.Edit, DisplayMode.View)and the other example:
If(TabList1_3.Selected.Value = "Hold" || TabList1_3.Selected.Value = "Approved", DisplayMode.Edit, DisplayMode.View)And I would like to know how to combine those formulas into one, thanks.
Kind regards 👋
Hi @esjimenezp
You code should look like:
If(
(dte_StartDate_1.SelectedDate >= Today() &&
(TabList1_3.Selected.Value = "Hold" || TabList1_3.Selected.Value = "Approved")),
DisplayMode.Edit,
DisplayMode.View
)
If you have any questions or feedback, please let me know. Have a great day! 😊
-----------------------
PowerYsa Power Platform Enthusiast [LinkedIn] | [Youtube]
I love to share my knowledge and learn from others. If you find my posts helpful, please give them a thumbs up 👍 or mark them as a solution ✔️. You can also check out my [@PowerYSA] for some cool solutions and insights. Feel free to connect with me on any of the platforms above. Cheers! 🍻