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

    Specific Project Query

    I have a query that pulls projects and lists hours worked on by different people on a report. I would like the user to be able to open this query, through a report, and be able to type in the project number to get that project its hours worked only, like a parameter query with dates. What do I...
  2. stevoreeno

    Specific Project Number Query

    I have a query that pulls projects and lists hours worked on by different people on a report. I would like the user to be able to open this query, through a report, and be able to type in the project number to get that project its hours worked only, like a parameter query with dates. What do I...
  3. stevoreeno

    Type mismatch in expression error

    thanks for the help, I needed to join through a query. For some reason that worked... And I finally got the reason why, joining number and text. Andy b, ---And Then Nothing Turned Itself Inside Out---
  4. stevoreeno

    Type mismatch in expression error

    SELECT Employee.E_First, Employee.E_Last, Employee.E_Manager, Hours.Hours_Spent, Hours.Date, Hours.Project, Hours.Type FROM Employee INNER JOIN Hours ON Employee.E_ID = Hours.FristLast E_manager is what I want it to be grouped by, and this is a lokoup Andy b, ---And Then Nothing Turned...
  5. stevoreeno

    Type mismatch in expression error

    What do you mean, where is the query? Andy b, ---And Then Nothing Turned Itself Inside Out---
  6. stevoreeno

    Type mismatch in expression error

    I am getting a "type mismatch" error when I try to run this query that is pulling info from a lookup table. Access help told me it was a problem, but not how to fix it. It told me I should use them (foreign keys) when you specify criteria for a field. How do I do this? Do...
  7. stevoreeno

    Showing Parameter Dates on a Report

    Thanks! easy enough Andy b, ---And Then Nothing Turned Itself Inside Out---
  8. stevoreeno

    Showing Parameter Dates on a Report

    In have a parameter query looking up specific dates. How do I show these begining and ending dates entered in the parameter on the report? Andy b, ---And Then Nothing Turned Itself Inside Out---
  9. stevoreeno

    Showing Parameter Dates on a Report

    In have a parameter query looking up specific dates. How do I show these begining and ending dates entered in the parameter on the report? Andy b, ---And Then Nothing Turned Itself Inside Out---
  10. stevoreeno

    Specifying a foreign key in the criteria (MISMATCH ERROR)

    The column that it is looking up is a lookup table of 4 names, first and last. I am getting this error even without anything in the criteria field???
  11. stevoreeno

    Specifying a foreign key in the criteria (MISMATCH ERROR)

    I am getting a "type mismatch" error when I try to run this query that is pulling info from a lookup table. Access help told me it was a problem, but not how to fix it. It told me I should use them (foreign keys) when you specify criteria for a field. How do I do this?
  12. stevoreeno

    Query bringing up last 14 days

    Where does that go into this expression? SELECT Hours.FristLast, Hours.Hours_Spent, Hours.Date, Hours.Project, Hours.Type FROM Hours WHERE (((Hours.Type)="over-time"))
  13. stevoreeno

    Query bringing up last 14 days

    I know you probably get this one all the time, but I need to know what I can put in the criteria of a query that will bring up dates from 14 days ago to the current.

Part and Inventory Search

Back
Top