Is there a way to add a time stamp for when an attachment is Uploaded.
I am creating an approval app for my company, and they would like to either add a time stamp or separate the files uploaded after a certain status change.
I found a video to tag an attachment from a drop down can you do something like that with time and date.
I was able to get it on the file name with:
UpdateIf(
colAttachs,
!StartsWith(
DisplayName,
"Uploaded-"
),
{
Name: "Uploaded-" & Now() & "_" & Name,
DisplayName: "Uploaded-" & Now() & "_" & DisplayName
}
);
Collect(
colAttachs,
Attachment_1_DataCardValue.Attachments
);
hey @lbolin
you could add a column to your sharepoitliste and patch Now() to this column when an attachment is uploaded.
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.
Greetings
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473