Hello everyone.
I am developing an app around collecting information on some areas where the internet isn't avaliable and update them in a sharepoint list.
I have been able to successfully store the form's information with the function Collect and after that displaying it. I am also capable sending some part of it using this:
Saving
If(Connection.Connected; SubmitForm(EditForm1); Collect(arrTemp; {tempNome: DataCardValue27.Text; tempLigacao: DataCardValue28.Text; tempHD: DataCardValue30.Text; tempLeitura: DataCardValue21.Text; tempOcoInf: DataCardValue6.Selected.Value; tempOcoImp: DataCardValue6.Selected.Value; tempObs: DataCardValue22.Text; TempFoto: DataCardValue23.SelectedItems; TempAnexo: DataCardValue24.Attachments}));; Back()
Updating
ForAll(arrTemp; Patch(LeiturasND; LookUp(LeiturasND; Title = tempLigacao); {LEITURA: tempLeitura; OBSERVAÇÃO: tempObs}));; Clear(arrTemp)
Altough, I'd like to also update other fields, like "Ocorrência Impeditiva", "Ocorrência Informativa", "Foto" and "Anexos", but they are in a diferent format (the three first ones are Choice Columns on my Sharepoint List -single choice- and Anexos is the Attachment).
How can I do that properly?
Screenshot for reference:
