Really don't want to double post, but I'm finding this is more of a query issue than anything.
I'm trying to export a filtered query to xml. I'm experimenting with filtering only one field:
WHERE ((([PART OUT - SET ITEMS].SETPURCHASEIDLK)=5));
Exporting to XML works just fine.
But if I try...
I have a form with a subform that has related data from a query in it. I'm trying to create a button that will export only the related data into an XML file. I've only been able to export the entire query (along with all the unrelated data).
My knowledge of VBA is mediocre at best, so I know...
Drat! Thats what I was thinking. So right now, I've done a fixed width import, and am trimming all the remaining fields that didn't import correctly.
Thanks for the help, anyway!
This list comes from a pdf report document that I've converted to a text file. This report came from a database that I do not have access to. I'm trying to find the easiest route to get this data into a database of my own. Its about 300 pages.
I'm trying to figure out if its possible to import a text file thats space delimited in to access. See the example text file below. I can import it via space delimited, but the titles of the movies that have spaces gets parsed up too. Is there a way to just parse the first few spaces and then...
I'm somewhat green on this kind of stuff. What I have is a catalog of film titles. Each one of those titles have multiple distribution agreements. Each one of those agreements have different territories. So I have three tables: Titles, Contracts, and Territories, each one has their own ID# and...
Any idea how to calculate this?
[RegDate] plus 28 years. Right now I can do that with this:
DateAdd("yyyy",28,[RegDate])
This gives me : [ExpDate] = 2/15/1950 + 28 years = 2/15/1978
I'm trying to get the date to round to the end of that calendar year (12/31/1978)
Ex.
[ExpDate] =...
I'll have to take a deeper look into this, because its not working correctly for me. I'll see what I can figure out. I'll let you know.
Thanks for the help!
Thank you to all who helped me on this! I took a little bit of both to make it work.
The next problem I'm having is when I start a new record in FORM A, which creates a new RecordID, but I need it to save all the information inputed in the form, close it, and then open FORM B with the newly...