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 👋


Report
All responses (
Answers (