A
adrian007uk
I have been trying to concatinate two fields to hold the image path of my
image folder (e.g., C:\Vinyl Images) with my image names (e.g., Vinyl1.jpg)
so if the location changed it would just require one name. John W was
helping me with this but it does not seem to work.
Fredg suggested using an update query. He posted:
Update MyTable Set MyTable.[Path] = "D" & Mid([Path],2) Where
Left([Path],1) = "C"
The above will change "C\My Folder" to "D:\My Folder" for all records.
However, i can not get the query to run. It says i am mising some syntax!
The field name where the images are stored is 'Picture' in a table called
'Vinyl'.
Does anybody know what i am doing wrong?
image folder (e.g., C:\Vinyl Images) with my image names (e.g., Vinyl1.jpg)
so if the location changed it would just require one name. John W was
helping me with this but it does not seem to work.
Fredg suggested using an update query. He posted:
Update MyTable Set MyTable.[Path] = "D" & Mid([Path],2) Where
Left([Path],1) = "C"
The above will change "C\My Folder" to "D:\My Folder" for all records.
However, i can not get the query to run. It says i am mising some syntax!
The field name where the images are stored is 'Picture' in a table called
'Vinyl'.
Does anybody know what i am doing wrong?