
Hi Team,
I am trying to create a Child collection based on the Filter condition on the Parent collection(30 Records) and then want to add a new Column with a default value but facing an issue.
Currently, I am getting the total children collection Rows counts as 32(30 from the Parent collection and 2 records satisfying the filter condition )
Can someone help me with this? Below is my code
ClearCollect(
colChildrenData,
AddColumns(
colParentData,
"IsChecked",
false
),
Filter(
colParentData,
column1="A"
)
Thanks in Advance.
Regards,
Tarun
ClearCollect(
colChildrenData,
AddColumns(
Filter(colParentData,column1="A"),
"IsChecked",
false
))