Hi all
I have an app to bulk update items (sharepoint list as data)
I have the formulas:
Gallery with checkbox items: Filter(PlanProjetos; Analise = "Aguardando Aprovação")
onCheck : Collect(colupdatesPlan;ThisItem)
onUnCheck: Remove(colupdatePlan;thisitem)
Save button:
UpdateIf(colUpdatesPlan;true;{Analise: "Aprovado";Aprovador: User().Email});;
Patch(PlanProjetos;colUpdatesPlan);;
It worked fine but now is showing error and don't save updates. The error is "the specified column is read-only and can't be modified"
What I need to change? How to collect only certain columns with "Thisitem"? and Remove if necessary?
Thanks