I've been given guidance on how to patch multiple galleries with other fields.
I've followed the instructions and gotten my formula to the following, except the
end language.
Can someone help me understand what should be in this component of the
greater flow?
Component in Question -
I've followed the instructions and gotten my formula to the following, except the
end language.
Can someone help me understand what should be in this component of the
greater flow?
Component in Question -
// Now patch all to SharePoint
ForAll(
col_ProductionUploadPatch,
Patch(
ZEB_Production_Dataset_List,
Defaults(ZEB_Production_Dataset_List),
{
Title: ParentTitle,
SubGalleryType: SubGalleryType,
SubItemValue: SubItemValue
}
)
);
Entire Flow -
Entire Flow -
ForAll(
PS_Gallery.AllItems,
With(
{
parentTitle: ThisRecord.Title
},
Collect(
col_ProductionUploadPatch,
ForAll(
PS_Tap_Gallery.AllItems,
{
ParentTitle: parentTitle,
SubGalleryType: "PS_Tap_Gallery",
SubItemValue1: ThisRecord.PSTG_Tap_Number_DD.Selected.Value,
SubItemValue2: ThisRecord.PSTG_Tap_Time_Fld.Text,
SubItemValue3: ThisRecord.PSTG_SOW_Count_Fld.Text
}
),
ForAll(
PS_Flux_Gallery.AllItems,
{
ParentTitle: parentTitle,
SubGalleryType: "PS_Flux_Gallery",
SubItemValue1: ThisRecord.PSFG_Flux_Type_DD.Selected.Value,
SubItemValue2: ThisRecord.PSFG_Flux_Weight_Fld.Text
}
),
ForAll(
PS_SOW_Gallery.AllItems,
{
ParentTitle: parentTitle,
SubGalleryType: "PS_SOW_Gallery",
SubItemValue1: ThisRecord.PSSG_SOW_Number_DD.Selected.Value,
SubItemValue2: ThisRecord.PSSG_SOW_Tag_Fld.Text,
SubItemValue3: ThisRecord.PSSG_SOW_Weight_Fld.Text
}
)
)
)
);
// Now patch all to SharePoint
ForAll(
col_ProductionUploadPatch,
Patch(
ZEB_Production_Dataset_List,
Defaults(ZEB_Production_Dataset_List),
{
Title: ParentTitle,
SubGalleryType: SubGalleryType,
SubItemValue: SubItemValue
}
)
)
Categories: