Hi,
I have an app where if a radio box is checked questions that are stored in a Dataverse then get populated into another Dataverse table relating to that record.
On the flip side if the checkbox is unchecked the questions should then be removed, this is the part I'm having issues with.
I have used ForAll and filter and this is working for adding the questions, however when I try and remove the questions I can't seem to get this working. I have a many to 1 relationship from QuestionsTable to another table that stores the questions Sections
ForAll(Filter(QuestionsTable,'Section Title'.'Section Title'= "SectionA"),
RemoveIf(ProgressQuestionTable,'Site Name'.'Site Name'=VarCurrentSite.'Site Name' && 'Section Title'.'Section Title'="SectionA")
)
I'm sure my logic is wrong but can't seem to figure it out and I get the following error...

Not sure where I'm going wrong?