Hi
The column clientnumber is are number. and the column interventies is a lookup column.
Can you explain why the column date of birth is only showing the first 7 records?
Do I need to check in the patch formula if there are {}?
This is my code for patch. it is set on OnChange.
Concurrent(
If(
Gereed.Selected.Value = "Gereed";
Patch(
'Wachtlijst HOME team Lijnbaan';
Defaults('Wachtlijst HOME team Lijnbaan');
{
'Stauts aanmelding': Dropdown2.Selected.Value;
Geboortedatum: DateValue(Geboortedatum.Text);
Clientnummer: Clientnummer.Text;
'Datum aanmelding': DateValue(DatumAanmelding.Text);
Datumintake: DateValue(DatumIntake.Text);
'Intake gedaan door': {Value: "Intake"};
'Welk domein is geindiceerd': Domein.Text;
Interventie: Interventie.Text;
'Indien 2de interventie is geindiceerd': {Value: "Interventie2"};
Behandelingmetvoorrangstarten: BehandelingSpoed.Text;
'Umami of DBC': {Value: "UmamiDBC"};
Opmerking: InvoerOpmerking.Text;
'Komt in behandeling bij':BehandelingBij.SelectedText.Value;
Behandelaar: TextInput5.Text;
Regiebehandelaar: TextInput4.Text;Gereed:Gereed.SelectedText.Value
}
)
);
Notify(
"Vergeet niet eerst het secretariaat te mailen, voordat je op oplaan drukt. Na het opslaan wordt pt verwijderd van de wachtlijst";
NotificationType.Warning;
5000
)
)
For the column clientnumber is set to Text: ThisItem.Clientnummer
For the column interventies is set to Text: ThisItem.Interventie
For the date of birth is set to Text: ThisItem.Geboortedatum
What makes it strange is that the gallery displays the first 7 rows in my gallery correct and then is showing in the column date of birth nothing and in the columns clientnumber and interventies [object object].