Very good day,
Please I need your help. I am reading cards through QR and, when I accumulate a quantity of information, I save and send these readings to SharePoint. I want to know if it is possible to implement an auto save that, when recording one or two readings, is automatically saved, performing the same process as the save button.
Thank you so much.

save code:
I want to generate an autosave with or without a button when there are records in the list
Set(_informacion;Defaults(Registro_Asistencia));;
ForAll( Gallery1.AllItems ;
Patch(Registro_Asistencia;_informacion;
{
TÃtulo:If(
CountRows(Split( Title1.Text ;"," )) >= 5 ;
Index(Split(Title1.Text; ","); 1).Value;
" "
);
Upi_Empleado:If(
CountRows(Split(Title1.Text; ",")) >= 5;
Index(Split(Title1.Text; ","); 2).Value;
Index(Split(Title1.Text; ","); 1).Value
);
Cedula:Index(Split(Title1.Text; ","); If(CountRows(Split(Title1.Text; ",")) >= 5; 3; 2)).Value;
Nombre_Empleado:Index(Split(Title1.Text; ","); If(CountRows(Split(Title1.Text; ",")) >= 5; 4; 3)).Value;
Rh:Index(Split(Title1.Text; ","); If(CountRows(Split(Title1.Text; ",")) >= 5; 5; 4)).Value;
Tipo_Capacitacion:Dropdown2.Selected.Value;
Curso: TextInput1_1.Text ;
Fecha:DatePicker1.SelectedDate;
Hora:Dropdown1.Selected.Value;
Horario:Dropdown1_1.Selected.Value;
Duracion:Label2.Text;
Objetivo:TextInput1_5.Text;
Facilitador:TextInput1_6.Text;
Upi_Facilitador:TextInput1_7.Text;
Categoria_Zoom:Dropdown2_2.Selected.Value;
Estrategia_Nexans:Dropdown2_1.Selected.Value
}
)
);;
Notify("Guardada la informacion");;
Clear(ScanColeccion);;