Thank you for the quick response, ideally when the attachment is uploaded, I would like the timestamp to appear beside it, so have the tag, file name, timestamp in the attachments window
This is my code in the OnAddFile section
ClearCollect(
colAttachments,
Self.Attachments
);
UpdateIf(
colAttachments,
!(First(
Split(
DisplayName,
"-"
)
).Result in colAttachTags),
{
Name: drpAttachTag.Selected.Value & "-" & Name,
DisplayName: drpAttachTag.Selected.Value & "-" & DisplayName
}
)