Hi @EMA03356 ,
What is the structure of the Screen?
If they are in a Gallery, I'm afraid you need to create a new Yes/No column for recording which item is selected.
When user select 'Add' button, update true to new column.
OnSelect of 'Add' button.
Patch(DataSource,LookUp(DataSource,ID=ThisItem.ID),{NewColumn:true});//Show Form when people select button firstly.
Patch(DataSource,LookUp(DataSource,ID=ThisItem.ID),{NewColumn:false})//Hide Form when people select button secondly.
Items of Gallery.
Filter(DataSource,true||NewColumn=true)
If the Form is inside Gallery, please refer to this.
Item of Form.
ThisItem
Visible of Form.
ThisItem.NewColumn
If the Form is outside Gallery, please refer to this.
Item of Form.
Gallery.Selected
Visible of Form.
!IsBlank(Filter(DataSource,NewColumn=true))
If the Form is inside Gallery, please refer to this.
!IsBlank(Filter(DataSource,NewColumn=true))
Best regards,
Rimmon