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 strongm 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. kerrigirrl

    output to excel

    My access help isn't working. If I want to output a query to excel, what's the abbreviation for excel? Also, is 1 correct for autostart? DoCmd.OutputTo acOutputQuery, "SRCus", ???, "SalesRep by Customer", 1 Thanks in advance! Kerri
  2. kerrigirrl

    Creating input box

    i would do it in 2 forms. the first form is where you would enter the printer id or some field that uniquely identifies the printer. When you press enter, have it open a second form that's linked (finding specific data), and this will show you the information about the printer selected. On...
  3. kerrigirrl

    passing data from form to new form

    this seems like it would be simple, but it's been awhile since i've worked with access and i can't figure it out. i have two forms, form 1 calls form 2 by the user pressing 1 of 3 command buttons. depending on which button is pushed, i want a field on form 2 to display a letter. if ADD button...
  4. kerrigirrl

    Break data apart and fill in table fields

    have you tried using the Mid, Left and Right functions? Left(Field_1, length from left) Right(Field_1, length from right) Mid(Field_1, start, length)
  5. kerrigirrl

    make table query

    i'm splitting up a field, 1082 characters long, text, into 5 different fields. but when i do a "Date: Mid([Field1],62,8)" in the make table query, it automatically makes it a text field. how can i change this to a date/time with short date format??? thanks in advance! kerri
  6. kerrigirrl

    How to remove spaces from inside a string

    if the spaces are ALWAYS in the space spot (if there is one) then try this: if mid(field1,7,1)=" " then 'checking for 1st space field1a = left(field,6) 'take first six characters endif if mid(field1, 12,1)="" then 'checking for 2nd space field1b = right(field1,5)...
  7. kerrigirrl

    Append query error

    i posted a message like this a few weeks ago to no avail. i didn't come across the 'save' solution until last week though. in my query, i notice that a date/time field (not involved in the query at all, but in the table i'm getting the information from) was empty. this caused it to error...
  8. kerrigirrl

    Run an update Quey

    assuming you know how to get a select query started, all you have to do to make it an update query is change the icon before the 'run' icon to update. choose your tables, click on the down arrow on the icon, choose update query and fill in the columns. i'm not sure how your table is set up...
  9. kerrigirrl

    alternative to transfertext?

    i've taken care of that file, this is completely different. when i link with the transfertext method, it gives me errors when i go to run queries on it. i'm using it to create another table, not changing anything in the linked table itself. i was told there was another way to automate linking...
  10. kerrigirrl

    rerunning same query, different field name...

    i need to use it in multiple calcs, i can't comprehend how this would work with a parameter query...
  11. kerrigirrl

    rerunning same query, different field name...

    this can't be that hard, but i'm out of ideas! in my table i have: jobnum date qty elem1 elem2 ... elem11 i want my query to append to a new table: jobnum date qty elem instead of creating 11 different queries (one for each elem), i want to be able to rerun the same query and just change the...
  12. kerrigirrl

    delimited file, starting at position...

    there's nothing separating the first part of the file from the 1082. it won't let me set a field separater there when i link it with delimited fields. it kinda looks like this: aolkj akdfu jaf45621 jalkjlkajsd kja dkaljf 5646 216543 154;62135432;46543210;5641 where 6 or 7 or sometimes 10...
  13. kerrigirrl

    delimited file, starting at position...

    i have a file that i want to link. every field after position 1082 is separated by a ;. The first part of the file, however is not. I'd like to separated the fields like this: Field 1 = everything before 1082. Field 2 = everything from 1082 to first ;. Field 3 = from first ; to second ...
  14. kerrigirrl

    linking part of a text file

    is there a way to link a text file, starting with a specific position? i only want the job #, let's say positions 987-998, and everything after position 1082. thanks in advance, kerri
  15. kerrigirrl

    access forms & reports

    are you typing in the date range somewhere? if you are on the form, in the query you can say in the criteria: between [Forms]![frmxxx]![LowDate] AND [Forms]![frmxxx]![HighDate] i'm not sure if this is what you're looking for. kerri
  16. kerrigirrl

    coding button press

    that's exactly what i'm looking for. thanks so much!!!
  17. kerrigirrl

    coding button press

    is there a way to code: if response = vbyes then ***(automatically press the RESUME button)*** else msgbox...
  18. kerrigirrl

    linking tables

    yes i'd like to know how. thank you so much!
  19. kerrigirrl

    linking tables

    i think my problem is that i'm using transfertext to link the table. if i go and link it manually, i have no problems. to create the common table, i'm using copyobject... that seems to be working.
  20. kerrigirrl

    alternative to transfertext?

    i'd like to automate linking a table into my db, but transfertext action won't allow me to change it. it also gives me errors such as permission denied or open by another user, (which i know it's not!). is there an alternative to using transfertext to link to a text file? if i manually link...

Part and Inventory Search

Back
Top