Hi @pcakhilnadh
According to your description, I think you want to update the record of the nested table.
Currently PowerApps can’t update the nested table, so I provide another method instead.
I create an collection named Form1 and update the record in Form1 firstly, then groupby the updated Form1.
Write this on the OnSelect property of Button.
Patch(
Form1,
LookUp(
Form1,
time = "8"
),
{
time: "10"
}
);
ClearCollect(
Form2,
GroupBy(
Form1,
"category",
"task",
"activity",
"DATA"
)
)
Best Regards,
Zhi Chen