Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
how can I remap an image's iptc data from one field to another?
I would like to be able to process a batch of images, moving IPTC data from one field to another (for example, from description writer to description). Is there a tool available for this? I have Adobe Bridge, but would use anything cheap that could do it.
hi folks - I want to "batch process" a bunch of images, moving iptc data from one field to another. not sure how the suggestions help so far.
1 Answer
- 5 years ago
That sounds like an update query. I'll assume you want to populate fieldB in the same row. You want something that looks like this: update table myTable set fieldB = right(fieldA,8) The syntax is probably slightly wrong but it should give you a starting point. If you want to put the data into a another table then look at using an insert query which uses the same right() function. The MS Access help file usually has good practical examples