Note: I had created a list and from that list i customised it to power apps and created the form and facing this issue.
DataCardValue2.Selected.Value = "Lesson Learned" && DataCardValue12.Selected.Value = "Yes",
ClearCollect(
GeneratedRows,
ForAll(
["ASI", "АWM", "САО", "ССВ", "СОО", "CIB", "Corporate Responsibility", "DEST", "Finance", "HR", "Legal", "RISC", "SGO", "TC10", "Technology", "EMEA", "LATAN Canada", "APAC", "3LEs"],
{
'Review Type': DataCardValue2.Selected.Value,
'Event Type': DataCardValue3.Selected.Value,
'LL/Read Across Name': DataCardValue9.Text,
'Date Selected as LL/Read Across': DataCardValue5.SelectedDate,
'Date Completed LL/Read Across': DataCardValue6.SelectedDate,
'# of Days': DataCardValue4.Text,
'Upload Completed LL/Read Across': DataCardValue14.Attachments,
'Results': DataCardValue13.Text,
'Date of Control Committee where LL/Read Across Shared': DataCardValue15.SelectedDate,
'CHLM Date': DataCardValue10.SelectedDate,
'CHUM Disposition & Applicable to Read Across': DataCardValue12.Selected.Value,
'CHUM Disposition Date': DataCardValue7.SelectedDate,
'Control Committee Reported To': ThisRecord
}
)
)
);
GeneratedRows,
If(
IsBlank(
Lookup(
Tracker_V1,
'Review Type'.Value = ThisRecord.'Review Type'.Value &&
'Event Type'.Value = ThisRecord.'Event Type'.Value &&
'Control Committee Reported To'.Value = ThisRecord.'Control Committee Reported To'.Value
)
),
Patch(
Tracker_V1,
Defaults(Tracker_V1),
{
'Review Type': {Value: DataCardValue2.Selected.Value},
'Event Type': {Value: DataCardValue3.Selected.Value},
'LL/Read Across Name': If(IsBlank(DataCardValue9.Selected.Value), DataCardValue9.Text, DataCardValue8.Selected.Value),
'Date Selected as LL/Read Across': If(DataCardValue2.Selected.Value = "Lesson Learned", Today(), DataCardValue5.SelectedDate),
'Date Completed LL/Read Across': DataCardValue6.SelectedDate,
'# of Days': DataCardValue4.Text,
Attachments: DataCardValue14.Attachments,
'Control Committee Reported To': ThisRecord.'Control Committee Reported To',
'Results': DataCardValue13.Text,
'CMLM Date': DataCardValue10.SelectedDate,
'CMLM Disposition & Applicable to Read Across': {Value: DataCardValue12.Selected.Value},
'CMLM Disposition Date': If(DataCardValue2.Selected.Value = "Lesson Learned", Today(), Blank())
}
)
)
)


Report
All responses (
Answers (