alanmusician
Programmer
I have a table with a text field containing a filename and a count of the number of images in the filename. I want there to be a numbered record for each image. For example:
Needs to be:
How is this best accomplished?
Code:
Imgfile | ImageNo
000020.tif | 3
Needs to be:
Code:
Imgfile | ImageNo
000020.tif | 1
000020.tif | 2
000020.tif | 3
How is this best accomplished?