If(
IsBlank(Subject_TextInput_Cancle_1.Text),
Notify("Please enter NickName"),
IsBlank(Subject_TextInput_Cancle_2.Text),
Notify("Please enter Email"),
Office365Outlook.SendEmailV2(
To_TextInput_Cancle.Text,
Subject_TextInput_Cancle.Text,
Body_HtmlText_Cancle.HtmlText,
{IsHtml: true}
);
ForAll(
Col As temp,
Patch(
'Vehicle 관리 App Vehicle Master',
LookUp(
Col,
ID = temp.ID
),
{
Return_Request_From_Ops: "유휴 배제 요청",
Return_Request_Date: Today()
}
)
);
Clear(Col);
Reset(To_TextInput_Cancle);
Reset(Subject_TextInput_Cancle_1);
Reset(Subject_TextInput_Cancle_2);
Set(
varshowcanclepopup,
false
);
)
I'am use this formula to send emails and save SP lists.
I want to save the Dropdown2 data of the collection in the SP list "Test" column as shown in the picture.
Since the Dropdown2 data is different, I want to store different data in the SP list Test column.