@RandyHayes
Hello Randy,
I'm trying to come up with canned responses for each Shipping Form status: New, On Hold and Shipped. I would like to include a hyperlinked email in the body of the email. My SharePoint column type is multiline of enhanced rich text. There is another issue with the formula below. I want the Logistics team to be able to overwrite the canned comments with something customized if they wish. I think the way I have it written below will wipe out any custom comments they enter. Is that correct?
Coalesce(If(ddStatusLS.Selected.Value="On Hold",
"We need more information in order to process your request. Please send us an email at CSO-TeamName@company.com or call us at 503.627.XXXX, Hours of Operation: 7-3:30pm, 2pm deadline for same day shipments. Thank you.",
ddStatusLS.Selected.Value="Shipped",
"Your items have shipped. Let us know if you have any questions.",
ddStatusLS.Selected.Value="New",
"Someone from Logistics will review your shipping request as soon as possible. Thank you.",
Parent.Default
))
Logistics Form Editable View:
I created an email hyperlink in the actual control versus the Default property of the data card value field.

User's Read-Only View:

Thank you Randy 😊
Teresa