| Asset Table | Application Table |
| ID | search type(Asset Table's ID) <- cocheckvalue's Text data |
| Asset Status (choice type) |
I have 2 tables in SharePoint.
The data in the text column of the cocheckvalue collection is put into a multi-selection query column.
I need to find the ID of this cocheck value and change the option of asset status in asset table.
I need a code to change the asset status option in this asset table to "Determined" when subsit to the OnSuccess function in the form.
Please help me.
/*ForAll(
DataCardValue13.SelectedItems,
Patch(
ITAM_asset,
Defaults(ITAM_asset),
LookUp(
ITAM_asset,
Id = colcheckvalue.Text
),
{ asset_status: {Value:"결재중"} }
)
);*/
Patch(
ITAM_asset,
ForAll(
colcheckvalue, //[myListGallery_4].AllItems As _item,
{ asset_status: {Value:"결재중"} }
)
);

Report
All responses (
Answers (