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 Mike Lewis 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. roxannep

    Convert yes/no to bool for Excel export

    I need to convert a yes/no field to it's Boolean equivalent prior to exporting to Excel. Dilemma: I have a table I export to Excel. While the table shows -1 and 0 for the Yes/No entries in the table, once it exports to Excel, it changes to TRUE/FALSE based on the data in the table. I need to...
  2. roxannep

    Globally replacing letters in Table, Query, Other Names

    Is there a solution available on any of these forums that does not require me to purchase a separate program? I don't have that kind of budget just to change the few letters throughout the dbase that we need to change.
  3. roxannep

    Globally replacing letters in Table, Query, Other Names

    I have a database that I need to clone and then change a few letters in fields, table titles, etc. (the company name changed, and I thought this would be easier than trying to go through every table, qry, macro, etc., and manually changing two letters in the name). Example: query titled...
  4. roxannep

    Calculated Field for Multiple File Nos.

    JeanW - I should have indicated the titles are text fields (they hold the title of the music piece) just as the composer field is text. So there is no serial number field at this time .... That's where I need the program to auto-enter based on the rest of my description above. Again, this...
  5. roxannep

    Calculated Field for Multiple File Nos.

    I work in Access, but have a request from my kid's HS band teacher and this needs to be done in Filemaker Pro. (Reminder to self: DO NOT VOLUNTEER to help "Create" a database until I know for sure what software they are using!) We volunteers are building a sheet music database (I am the only...
  6. roxannep

    Need to edit recordset thru query, MAX also needed

    Lupins46 - No, it really doesn't matter if I see the transactions. I was just trying to find a way to hone it down to one Contacts record. Does this make it easier?
  7. roxannep

    Need to edit recordset thru query, MAX also needed

    I have two tables: Contacts and Transactions. It is a one-to-many relationship (Contacts-to-Transactions). I am trying to come up with an editable recordset in datasheet view using this relationship. The hitch is that I need to display the Contact record only once for any and all times it finds...
  8. roxannep

    Filter or query that allows edits

    I have two tables: Contacts and Transactions. I need a way to filter the Contacts by Transactions over $500. The common field is ContactID in each table. I can easily do a query, but I need to make an edit to the Contacts record. Naturally, all transactions meeting the criteria show up...
  9. roxannep

    Splitting data entry from one field into multiple fields

    I'm not sure I'm seeing how this will then deposit the split name into the appropriate fields. I see how the code determines the pieces, but I need each piece then pasted into the appropriate fields. Again, I'm a novice, so maybe it's not popping out to me where the "John" part is then...
  10. roxannep

    Splitting data entry from one field into multiple fields

    I need to split out some data in one field and have it pasted into separate fields. Example: Fields: NAME, FIRSTNAME, LASTNAME NAME: Bob Jones needs to split out: FIRSTNAME: Bob LASTNAME: Jones and empty the NAME field. In some cases, middle initials are included so how to handle those...
  11. roxannep

    Query First and Last Record of Most Current Batch

    Okay, tried VAL[txtItemcount].... no go, same message. Did I put it where I was supposed to? Message I get: Runtime error: 2105 You can't go to the specified record. Also I had to add the rst! to even get the program to recognize the line (see green text below). It kept erring on me on the...
  12. roxannep

    Query First and Last Record of Most Current Batch

    okay, been trying the code you sent, but on the line: DoCmd.GoToRecord acDataTable, "CSInventory", acPrevious, txtItemCount I keep getting an error telling me it can't go to that record. Is it because we are starting with the last record and telling it to move xxx forward from there...
  13. roxannep

    Query First and Last Record of Most Current Batch

    The key field is actually FileNo, but the field data I need displayed is BarcodeNo which uses the FileNo and a couple of other pieces for a composite identifer (B1140-C0420 ... the fileNo is the 1140). The Barcode data is updated at the RunMacro line, then I need to pull the first/last, so...
  14. roxannep

    Query First and Last Record of Most Current Batch

    WildHare - I think I posted my current code at the same time you posted yours. How do I fit what you provided in with what I have going now? Thanks!
  15. roxannep

    Query First and Last Record of Most Current Batch

    Okay, here is the code so you can better see what I need: Private Sub cmdAdd_Click() ' Roxanne Pratt 14-Nov-2000 ' create multiple identical records for recurring inventory ' add records to Inventory database and clear form for next ' entry of recurring inventory items Dim rst...
  16. roxannep

    Query First and Last Record of Most Current Batch

    That's just it, the file no. is not added until the records are created through the copying process. It is those files numbers I need to have display. I need a way for Access to automatically pull the most recently created record file no. (which would be the last file of this batch) AND the...
  17. roxannep

    Query First and Last Record of Most Current Batch

    Well, that sounds reasonably easy! However, not really being a programmer but just a little more advanced user, I need to know where and how to do this? In a query? On a form ... please give me a a bit more about how to write out the GoToRecord request you are showing me. Thanks!
  18. roxannep

    Query First and Last Record of Most Current Batch

    I need to have a message box come up showing the contents of one of the fields in the table based on the most current items entered. The user sometimes must enter 25 identical records except that each one must have a different file number (example: inventory but each item is given it's own...
  19. roxannep

    Message Box Reporting Variables

    Thanks for such a fast reply. I should have been clearer ... I know about how to make the message come up and where to plug in the strings ... it's how to get those variables to plug in that I need an assist with (the file nos. based on the variable "number of records" just created by...
  20. roxannep

    Message Box Reporting Variables

    Situation: Currently have a form that user inputs inventory item data in unbound boxes, including one indicating how many times to duplicate the item. These items are sold singlely in various locations at various times and must be tracked individually with their own unique identifier. To...

Part and Inventory Search

Back
Top