
I have my collection name xxxx with only one column
I have my Dataverse table Apilocations table with single column which is empty right now
what function do I need to write on button so that if I click on a button it will load/copy all data from my collection/table to my dataverse table
I am using ForAll(xxxx,Patch(Apilocations),{Value:Thisrecord}), or ForAll(xxxx,Patch(Apilocations),{crfo5_Name:Thisrecord})
or
ForAll(
xxxx,
Patch(
Apilocations,
Defaults(Apilocations),
{
crfo5_Name: xxxx.Value
}
)
)
but none working
Can anyone help me solving this ,Please??
Hi @Nida_Sayedi,
Modify as below:
ForAll(
xxxx As temp,
Patch(
Apilocations,
Defaults(Apilocations),
{
crfo5_Name:temp.Value
}
)
)