Hi everyone,
I am making an app that needs to patch some lookup columns in sharepoint and it did, until I changed the browser language. When I made the app, the browser was set to US english however, most users that will use the app will be using their browser in a different language. To my knowledge this should not pose a problem but for some reason a patch formula just completely breaks. I used the following formula:
ForAll(
Gallery9.AllItems,
Patch(
'test table',
Defaults('test table'),
{
'Project name': TextInput1_4.Text,
'Vergunning ID Test': {
Id: ThisRecord[@ID],
Value: ThisRecord.ID},
'Project ID Test':{
Id:recIDman,
Value:recIDman}
}
)
)
This works in the US-english version, but when I open the app in the other language it stops working and I get an error saying :
-The function 'Patch' has some invalid arguments
- Invalid argument type. Expecting a record value, but of a different schema
-Your formula is missing a column id.
I just don't understand why it gives me this error or how to resolve it. Does anyone have any idea?
Thanks in advance.