Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    Thank you, all is working great. Once again I appreciate all the help and learning opportunity.
  2. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    Just need to create a new module for new code correct? 1. new code saved as a module called "trimBadChars" 2. no change to "tblBadChars" fields (should contain any unwanted #letter. combination) 3. no change to "RemoveBadChars-UpdateQuery"
  3. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    I scrubbed the tblBadChars and put just #., #letter. and all works fine. This is a naming std. issue and I'm sure it could be coded to work, but for this effort this will do. The files for order will have to follow a std. of #letter.space. thx again. I'm sure got my little purple stars;)
  4. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    let me play w/ it a little more, still seems like my results are not consistent. I'll check the code and vers. etc.
  5. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    MajP, can u walk me thru the code, trying to understand why I get the following results: my badchar table has (for #s 1-10) 1 1. 1a 1a. . . . 10 10. 10a 10a. if the record is "1a. filename.txt" I get "ename.txt" (7characters trimmed) if the record is "1.a filename.txt" I get "filename.txt"...
  6. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    Ahhh be nice Skip, I'm new to the whole forum thing, thought I gave credit were credit was due. Per my posts I hope it's obvious that my appreciation for all of MajP is obvious, but thank you for covering me. I click the little purple star once and thought it would tag the all the posts, I...
  7. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    I think this will work playing w/ some test data, there are a few situations that need to be addressed, but I'll play around and see what I can do. If not I'll hit you up one last time in the morn. thx.
  8. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    correct only #s, spaces, ., and - typically inconsistent format in usage (1a. xxx, 1a.xxx, etc.)used to sort order in the directory file system.
  9. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    I see where u r going with the new table unfortunetaly I do not control the directory structure and it changes very dynamically. I'll need a function... to strip off the numbers and spaces. thx
  10. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    Ex. Before After 2 newfilename.pptx -> newfilename.pptx 1. filename.pptx -> filename.pptx 6filename1.pptx -> filename1.ptx 4-filenameBB.pptx -> filenameBB.ptx Not sure this is the most effiecient statement, but this is how I got all fields starting w/ a number. SELECT...
  11. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    Query works fine, found the records I need using "Like" command now how do I update the field keeping everything but what I found w/ "Like"? If I update w/ "" that will update complete field to blank correct? I just want to replace my findings and have the field start with the next character...
  12. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    MajP, Everythingn is still working great thanks to u. I don't want to take up too much more of your time, but had another question. To clean up the manual part of the "Presentation" field would it be more efficient to wright a macro or sql statement and do an update query? Re-cap of issue...
  13. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    All seems to be working fine now, I'll play around w/ it for a day or so. THANKS again for all your help.
  14. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    hmmm, all records come back w/ "No File" in the "Document" field.
  15. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    I get Microsoft Office Access window w/ a single character and an OK button. when button clicked then signle character "." w/ OK button... each time the character alternates a letter then ".".
  16. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    w/ the code from last post I get a run-time error '5': Invalid procedure call or argument debug Highlights: If Mid(tempDoc, Len(tempDoc) - 4, 1) = "." Or Mid(tempDoc, Len(tempDoc) - 3, 1) = "." Then
  17. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    sounds good. How about 1. Tab x w/ no files. can the currrent code be modify to include tabs that have no files? thx
  18. ETSMAN

    How to Parse Imported Data String into Multiple Fields?

    Wow, this works great... I guess I'm at my wish list point now: 1. I want to be able to create a report off this query that tells me if I have no files under a Tab (gap report). Any Tab directory that has no files would show CourseName Tab x 2. I need to duplicate the "Document" field...

Part and Inventory Search

Back
Top