Hi,
I am trying to display the file on edit form screen from a data verse table which has child relation to the main table.
I needed to store the files to a child table, couple of file type columns to attach single file to each file column and another file column where 10 files can be attached,I'm able to patch the file from a file type column but when i try to pull the file from file column(column Name : FundReport) that has single file to edit form screen using the code below,it is not working.
forall(filter('child table', 'ID'=selectedgallery.id),{DIsplayName:ThisRecord.'FundReport'.FIleName,Value:ThisRecord.'FundReport'.Value})
With this code above, it displays file that i needed but along with other files from other column with no name and value as in the image below, here i only need the that has name in the image
i tried with look up and it didn't work, no name and no value
LookUp('child table','ID'=selectedgallery.id,{DisplayName:ThisRecord.'FundReport'.FileName,Value:ThisRecord.'FundReport'.Value})
Thanks for the help...