Hi
I am trying to filter and show the attachment in the editform but , it is showing all the attachments not as per condition . Any help ?
formula
Filter(ThisItem.Attachments, "Doctest.docx" in ThisItem.Attachments.DisplayName )
Thanks
gautmish

Hi
I am trying to filter and show the attachment in the editform but , it is showing all the attachments not as per condition . Any help ?
formula
Filter(ThisItem.Attachments, "Doctest.docx" in ThisItem.Attachments.DisplayName )
Thanks
gautmish
Consider changing your filter formula to the following:
Filter(ThisItem.Attachments, DisplayName = "Doctext.docx")
I hope this is helpful for you.