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 TouchToneTommy 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: *

  • Users: theif68
  • Content: Threads
  • Order by date
  1. theif68

    Changing Report

    I have a report that I need to create that is going to be a data dump of 25 selected records from "tblImport", but my issue is the fields are going to change in this table daily. This will select my records and fields, but need a report to be displayed off of this query without having to...
  2. theif68

    Changing query

    I have a database that will have a file imported multiple times in a day to be ran through some queries. This file will be different every time. I have a query that selects a random 25 records for a data dump but what is the easiest way to create a report that will change with the new fields...
  3. theif68

    Parse Query

    I am looking to parse names that go into a table in the field "FULLNAME", but I only want this qry to run if there is 1 space in the field. UPDATE tblStandardLayout SET tblStandardLayout.FNAME = Left([FULLNAME],InStr([FULLNAME]," ")), tblStandardLayout.LNAME = Mid([FULLNAME],InStr([FULLNAME],"...
  4. theif68

    Can I create A Report from This?

    This gives me a layout of a table in the debug screen. How can this be alterd to show in a report? Public Sub fieldProperties() Dim tblStandeardLayout As String Dim rs As DAO.Recordset Dim fld As DAO.Field Set rs = CurrentDb.OpenRecordset("tblStandardLayout") For Each fld In...
  5. theif68

    Character Counts

    Is there a way to get charater counts of a feild in a table. So if I have a company feild I want to get a count on how many are under or over 50 charaters long.
  6. theif68

    Record Multiply

    I have a table that has 10 records in it with a quantity feild I need to create that record that many times. Field1 Field2 Qty 001 Dog 10 002 Cat 5 I need to have an output file that will have Line 001 10 times and line 002 5 times to export to excel.
  7. theif68

    Report That Prints Table Headers.

    I need to be able to bring in any type of file in access, and print a field layout, quick and easy. Is there a way to do this. Example: Field1 1 30 Field2 31 60 Field3 61 90
  8. theif68

    Name Parsing

    I have a database with the names in 1 column, is there a way to parse these out? Column 1 Mr John Brown Jr. TO Expr1 Expr2 Expr3 Expr4 Mr John Brown Jr.
  9. theif68

    Easy Select Query

    How can I select a group of records from a table that includes the ";" in a specific column. Example: Column1 Column2 David 978-555-5555 Tom;Harry 617-555-5555 I would only want to select the second record. Also is it easy to change this to select the one...
  10. theif68

    Select Statement based on CFFORM Error

    First page code <CFFORM format="Flash" width="500" Action="Results.cfm" Method="Post"><br> <p> Enter Player Name <CFinput type="Text" name="Playername"> </p> <p> <CFinput type="submit" name="Submit" value="Submit"> </p> </CFFORM> Second page code <cfquery name="Score" datasource="Nascar">...
  11. theif68

    Please Help

    Ok I have a table that looks like this. Name Row Section Price Ryan A 12 $10 Ryan b 12 $10 donna C 5 $20 donna g 6 $40 I need to creat a query that will group by name (keeping only one record) and combine the...
  12. theif68

    If then Else Help.

    Is there an easier way to do this? I have a list box and a button that will work of the selected box but there are a ton of entries.... If Me.ListContact = "Alphabetical Customer Listing" Then DoCmd.OutputTo acOutputReport, "rptAlphabeticalContactListing", acFormatSNP, , yes ElseIf...

Part and Inventory Search

Back
Top