I have a form that shows an image of a card based on the selection of a listbox. The image path is in the querty that the form runs off of. I set the control source of the image to: =
[List].[Column](6). That is simply the path for the image to be displayed.
Now my issue is, I just discovered that some of the cards have two sides. In the folder where they reside the file shares the card name, normally. In the case of two sided cards the file name is the card name with a 1 or a 2 at the end. So, now I'm trying to set the form up to, with regular cars, show the card face and the default back. In the case of two sided cards I'm trying to get the form to add the "1" or "2" to the end of the file name and display each side. One way I've been working on is setting the control source for the new image to:
=if(FileExists("
[List].[Column](6)"),"
[List].[Column](6)","C:\Program Files (x86)\Gatherer Extractor\pics\" & "
[List].[Column](8)" & "
[List].[Column](2)" & ".full.jpg")
I was hoping this would simply build a new file path. I used something similar, although far less complex in excel, which is how I got the image paths into my database in the first place.
So, as my second attempt, I figured I could work it out in excel and just have a front and back image field. My problem there is that I'm afraid to import the table again. I'm not sure if I can import it and have it only update 1 or 2 fields or have it just add one field. Or, if I can import it as a whole new table, delete the old table, rename the new one and still have all my codes and references and all that work the same.
I suppose I'm asking for help with the import. Is there a way the update the table without having to redo everything? Can't do it manually. Well, I could, but it's 23335 records so far and that would take me years.