Hi @Anonymous ,
Could you please share a bit more about the Products field in your SP List? Is it a Text type column, Choice type column or a LookUp type column?
1. If the Products field is a Text type column
Set the Update property of the Products Data card within your Edit form to following:
DataCardValue1.Selected.ColumnName // ColumnName represents the column in your another list, which you want to save its value back to your Main SP List
2. If the Products field is a Choice type column:
Set the Update property of the Products Data card within your Edit form to following:
{
Value: DataCardValue1.Selected.ColumnName
}
If you have enabled "Allow Multiple selections" for this Choice type column, please consider modify above formula as below:
ForAll(
DataCardValue1.SelectedItems,
{
Value: ColumnName
}
)
3. If the Products field is a LookUp type column, which reference values from your another ListMarketProducts list:
Set the Update property of the Products Data card within your Edit form to following:
{
Id: LookUp(ListMarketProducts, ReferencedColumn = DataCardValue1.Selected.ReferencedColumn, ID),
Value: DataCardValue1.Selected.ColumnName
}
I assume that the Products field references values from the ReferencedColumn in your ListMarketProducts list.
If you have enabled "Allow Multiple selections" for this Choice type column, please modify above formula as below:
ForAll(
RenameColumns(DataCardValue1.SelectedItems, "ReferencedColumn", "ReferencedColumn1"),
{
Id: LookUp(ListMarketProducts, ReferencedColumn = ReferencedColumn1, ID),
Value: ReferencedColumn1
}
)
Please consider take a try with above solution, then check if the issue is solved.
More details about the ForAll function, please check the following article:
ForAll function
Best regards,