Hi All. This Patch statement fails and it says the patch statement has an invalid argument:-
ForAll(QuestionTemplate, Patch(JobItems, {Q1: QuestionTemplate.Q1}))
However this is ok: ForAll(QuestionTemplate, Patch(JobItems, {Q1: "Hello World"})) so its I believe then formula is not seeing QuestionTemplate.Q1 as a text input when it is.
QuestionTemplate.Q1 and JobItems.Q1 are both columns in a SharePoint list of type 'single line text'
I have also tried ForAll(QuestionTemplate, Patch(JobItems, {Q1: Text(QuestionTemplate.Q1}})) but that does not work either.
Help!