Hello community,
I am trying to update a table in an excel file with patch. No matter what insert, the Server always gives an error "A Value must be provided for item". I tested a version where I left all updates blank and just used Defaults, but even that wont work. I am happy for any comments or ideas 🙂
The table has five colums with the following formats:
- Kostengategrie - String
- Kosten - Number
- Kommentar - String
- Eintragsdatum - Date
- Fälligkeitsmonat - Date
and I am using the following code:
Patch(
Reisekostentabelle,
Defaults(Reisekostentabelle),
{
'Kostenkategorie ': Kostenkategorie_Value.SelectedText.Value,
Kosten: Kosten_Value,
Kommentar: Kommentar_Value.Text,
Eintragsdatum: Coalesce(Blank(), Today()),
Fälligkeitsmonat: Coalesce(Blank(), DateValue1.SelectedDate)
}
);
Navigate(BrowseScreen1)

Greetings
Lasse