I’ve uploaded images in a column (each row 1 image only) and how could I get the image url in new column?
I’ve tried to get the link via image viewer by right click then “open in new tab” but it will download the image. What I want is, the image display in the new tab when visitor click the link. Is there any formula for the url column to achieve this? or there is any other method?
Currently, it is not possible, the URL you see int the preview is dynamic, and it is always returned as an attachment. I hope we will change it soon (any PR is welcomed ).
But with a little help from some external site this can be achieved now. If you have a site, hosted somewhere, that can show an image that is passed as a URL parameter, like this (just a single index.html page):
// index.html
<script>
var img = document.createElement('img');
img.src = new URL(window.location.href).searchParams.get('url');
document.write(img.outerHTML)
</script>
You can generate a static URL in a formula column with the following code: