I have a column photoID with multi-line text type in company list.
I have successfully added pictures using add picture control in power apps.
and the photo is saved as the following format: appres://blobmanager/53cf026eecc64ecab56bd0f9c3f317d2/66
I have a dropdownlist that holds ID of company list.
now i want to display the photoID of the user when I select Id number from the drop-down.
I have an Image control called Image1,
then I linked it with following code.
LookUp(company, ID=Value(dropdownid.SelectedText.Value),photoID)
on select Id from the dropdownlist at the first time it shows the image in image1 control, but after few seconds the moment it will not show any photos.
How do i fetch image from sharepoint list with multiline-text types into image control?
regards