Hi,
the best way of doing this that you set a variable value of your selected items and then use like below function.
If(LookUp(basket,itemcat=VItemcat,itemcat) = VItemcat, Disabled,DisplayMode.Edit)
i have set this variable from dropdown selection so it will work for each items whichever you will select from dropdown.
Set(VItemcat,Dropdown1.Selected.Value)
or you may use this
If(LookUp(basket,itemcat="Mobile",itemcat) = "Mobile" ||LookUp(basket,itemcat="Laptop",itemcat) = "Laptop",Disabled,DisplayMode.Edit)
As per me first option is best.
If this post helps, then please consider Accept it as the solution to help the other members find it more.