// First, update the DataCardValue3.Text based on the conditions
Set(
UpdatedText,
If(
Not(IsBlank(DataCardValue3.Text)) && !IsMatch(
DataCardValue3.Text,
User().FullName
),
DataCardValue3.Text & ", " & User().FullName,
If(
IsBlank(DataCardValue3.Text),
User().FullName,
DataCardValue3.Text // If none of the condition are met, keep the existing text
)
)
);
// Now, patch the updated value to the SharePoint list
Patch(
Software,
LookUp(
Software,
ID = Gallery1_1.Selected.ID
), // Find the item in SharePoint using the ID
{Expert: UpdatedText // Patch the UpdatedText value to the Expert column
}
);
Set(
varShowPopup,
false
)
Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
Split(TextInput1.Text,";")
ThisItem.Value
Launch("mailto:" &ThisItem.Value)
Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
Launch("mailto:abc@pqr.com")
Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.