Forum Discussion
Error in powerapp code when replacing th existing sharepoint list with new list having same data
- 4 years ago
Hi @SUPRIYAK ,
Firstly, try this syntax
ForAll( Filter( Clc_Befout_list, Temp_Status="New" ) As aPatch, Patch( AOA_TPT_Outage_Process_Demo_Response_SK1, {ID:aPatch.ID}, { Response:aPatch.Response Start_Time: Var_Start_Time, End_Time: Now() } ) )however your issue seems to be with the Response field - is the the original name of the field? Go to your List Settings, select the field and look at the end of the URL at the top to see the actual field name.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
- 4 years ago
It separates different "commands" or code instructions.
Hi @SUPRIYAK ,
Firstly, try this syntax
ForAll(
Filter(
Clc_Befout_list,
Temp_Status="New"
) As aPatch,
Patch(
AOA_TPT_Outage_Process_Demo_Response_SK1,
{ID:aPatch.ID},
{
Response:aPatch.Response
Start_Time: Var_Start_Time,
End_Time: Now()
}
)
)
however your issue seems to be with the Response field - is the the original name of the field? Go to your List Settings, select the field and look at the end of the URL at the top to see the actual field name.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps