
Announcements
Hi Guys, spent some time on this one getting the error:
I have made sure that the names of the items in collection and the SP list are exactly the same and also did the same for the data type. The coloumn Prj_Name is title in the SP list as shown below. Appriciate the help!!
Hi @Hattiomkar2 ,
When a List is created, it has a default required column 'Title'.
Although you have changed the display Name of the title column(Prj_Name), its name is still 'Title'.
So I think you should add a column(Title) in your patch function.
ForAll(collection,
Patch(list,Defaults(list),
{...:...,
...:...,
Title:...}
)
)
Best Regards,
Wearsky