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. ThereUare

    Passing Multi Value parameters to a subreport with Available Values

    This was an oversight on my part. The problem was in the date parameters. I had to have the correct format when being passed. Ensure all formats are exact when passing parameters.
  2. ThereUare

    Passing Multi Value parameters to a subreport with Available Values

    I have created a Main Report that I has been able to pass the parameters and values to a subreport successfully. Now I would like the user to be able to further filter at the subreport level by providing parameters with mulit values. So they will be able to select which ever parameters they...
  3. ThereUare

    Run Macro on Multiple Word Docs

    Does anyone have code to have a Dialog box open and give the user a way to pick multiple Word Docs. Then after they pick them it will run a macro. Any code snippets would help.
  4. ThereUare

    Count Until Selected Word

    Thanks fumei, that was exactly what I was looking for. Seems so simple now that I look at it.
  5. ThereUare

    Count Until Selected Word

    Thanks Tony, that was very helpful. My only concern is that I will have a problem if that word is repeated in the document. It looks like it will go to the first instance and that will be the end. Is there a way I can get the word count specifically for the instance of the selected word?
  6. ThereUare

    Count Until Selected Word

    I need some code for a word doc to count the number of words until the selected word. In other words, I need to find the word count position of a particular word. Any loops or maybe a property example would really be helpful. Thanks
  7. ThereUare

    Extract LastName, FirstName, MI into three fields

    Wow that really helped. I was about to give up on it. Thank you very much for your Help PHV. I was wondering if you had something in case the FullName did not have a middle initial? It seems to work very good until you come up with a name without a middle initial.
  8. ThereUare

    splitting a full name into first name; last name in access 2003

    You can put this in your Query. Just make up a new field like this: FirstName: Left([FullName],Instr([FullName]," ")-1) or LastName: Mid([FullName],Instr([FullName]," ")+1) Hope that helps.
  9. ThereUare

    Extract LastName, FirstName, MI into three fields

    Thanks but I know there is something easier I can just use in a query. I don't want to have to use code and look for specific events. It should just be a simple query.
  10. ThereUare

    Extract LastName, FirstName, MI into three fields

    I'm having a brain fart righ now. I can only do this to extract the LastName and First Name, but I also get the Middle Initial from the first name. I need something to only extract the First Name. Please Help. This is my formula so far. This is the field I need to extract from: LastName...
  11. ThereUare

    How Do I extract a middle number(s) within a string of numbers?

    Ok, you need to use the DatePart Function. You can look it up in the help but here is an example to your examples. In Access this formula will work for either example you gave. Ex1: DatePart("d",#1/2/2008#) Ex1: DatePart("d",[FieldName]) The "d" extracts the day only. You can also use it to...
  12. ThereUare

    Extrat LastName, FirstName MI in a query from a FullName Field

    Ok well I thank you all for your inputs but none of them worked. It will definitly have to be a Mid and InStr but I need to be able to see the space between the FirstName and the Middle Initial. This is the format I need to break up. LastName, FirstName MI I was able to extract the first name...
  13. ThereUare

    Extrat LastName, FirstName MI in a query from a FullName Field

    I'm having a brain fart righ now. I can only do this to extract the First Name, but I also get the Middle Initial. I need something to only extract the First Name. Please Help. This is my formula so far. Formula: (Used in a Query) FName: Mid([FullName],InStr([FullName]," ")+1)
  14. ThereUare

    Need to Import a text file line by line

    Sorry for not replying earlier. Thanks to all who made suggestions. I tried the code but I'm not having any luck. I'll keep tinkering with it.
  15. ThereUare

    Need to Import a text file line by line

    Well my problem is that I don't know the code to insert them into columns. The text file contains alot more information that I do not need. I need to be able to search for 'Name:' and insert the value after that into a column. Then move onto "DOB:" and insert those values into another column...
  16. ThereUare

    Need to Import a text file line by line

    I have a text file that is not in a friendly format for Access. Can someone provide me help to get the following into a table? TextFile> Name: Blow Joe DOB: 17Oct78 and so on EndofFile< It has more but I just need to get started.

Part and Inventory Search

Back
Top