
Announcements
Hello,
I have question if is possible to get links to files stored in SharePoint library, and in the loop display them in html control.
This is my code:
ForAll(colPicturesToShow,
"<img src=""" & ThisRecord.Thumbnail.Large & """ alt=""Testing"" style=""width:100px; height:50px;"">"
)
but it doesnt work because control expected text.
Do you have some other solution without using gallery?
Best regards.
Yes, but you should use the Concat function, which can take a table and create a text from an expression in the table (SP list):
Concat(
colPicturesToShow,
"<img src=""" & ThisRecord.Thumbnail.Large & """ alt=""Testing"" style=""width:100px; height:50px;"" />"
)
Hope this helps!