Hi @Anonymous ,
Assuming the data is written to the fields
If(
CountRows(
Filter(
YourGalleryName.AllItems,
'Top Root Causes' = 'Action Title'
)
) > 0,
DisplayMode.Disabled,
DisplayMode.Edit
)
If you are dealing with the content of the Combo Boxes before it is written to the data source
If(
CountRows(
Filter(
YourGalleryName.AllItems,
YourTopRootCausesComboBox.Selected.xxxx = YourActionTitleComboBox.Selected.xxxx
)
) > 0,
DisplayMode.Disabled,
DisplayMode.Edit
)
where xxxx is the valid output (Value/Result/FieldName) of the combo box
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps