0
How to read/copy the file name of a picture in an image container
I need to copy the file name of an image in an image container into another field
how to do that?
5 replies
-
You can get the image name with a formula like this:
let path := text(Image);
substr(path, index(path, "/") + 1)
-
Great. Thanks
-
Is it also possible to get the location where the file is on the hard disc?
-
The first line of the example code will put it in the "path" variable.
or just do
text(Image)
Content aside
- 1 yr agoLast active
- 5Replies
- 1810Views
-
1
Following