I want to make a replace function that can take some data from a table and save a part of this in another column. This is supposed to happen as a part of an update query, but I cant make it work.
An input could look like this: /BarkAS/S2/73.1451.30517p.jpg
I'd like the output to contain only the filename: 73.1451.30517p.jpg and then save it in another column as a part of the update query....
Therefore my function looks like this: Replace([picture];"*/";"")
This should result in saving everything after the last "/" and discard everything before this, but it doesn't work.

An input could look like this: /BarkAS/S2/73.1451.30517p.jpg
I'd like the output to contain only the filename: 73.1451.30517p.jpg and then save it in another column as a part of the update query....
Therefore my function looks like this: Replace([picture];"*/";"")
This should result in saving everything after the last "/" and discard everything before this, but it doesn't work.