i have a dataverse table displayed in powerapps. in this dataverse table there is a pos that is unique.
I would now like to compare the pos with the other datasource that I have also included in the powerapps.
If(pos.Text = Text(ThisItem.Pos) , stueck.Text, "")

Unfortunately, it only shows me one item in the piece column.
When I try to use Forall I constantly get a syntax error
ForAll('VK-EK_1', If(pos.Text = Text(ThisItem.Pos) , stueck.Text, ""))
