Hi,
I'm trying to put a condition to the edit page of my form where in if two or more items (using checkbox) has been selected, the DefaultSelectedItem should be Empty, and if only a single item is chosen, it would populate the edit page with the items current attiributes.
However this code i'm using does not seem to work.
Snippet:
If(
CountRows(selected) > 1,UpdateContext({defaultsuggested:""}),
UpdateContext({defaultsuggested:"Parent.Default"})
)
I tried removing the quote on the Parent.Default but it still does not work.

