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

  • Users: Kat21
  • Order by date
  1. Kat21

    Adding to a date

    There is no need to be hasty. You were both wrong!!! Here is the proper code that works for anyone who may have the same problem I did. You will use it in your where statement WHERE (((weekly1.Expr1)=[FORMS]![weekly]![Month]) AND ((weekly1.Expr2) Between [FORMS]![weekly]![day] And...
  2. Kat21

    Adding to a date

    Everything works fine I just need to know how to add so I can get a weekly report from the date the user enters. I have tried the functions you supplied me with but they are just returning blank data.
  3. Kat21

    Adding to a date

    I tried this the dateadd function does not work I am putting it in the criteria for the design mode is this wrong?
  4. Kat21

    Adding to a date

    Ok I did that so how do I get it to add 4 to the date
  5. Kat21

    Adding to a date

    PARAMETERS [FORMS]![Weekly]![Date] DateTime; SELECT [DISPOSITION OF SCRAP MATERIAL].Date, [DISPOSITION OF SCRAP MATERIAL].Item, [DISPOSITION OF SCRAP MATERIAL].Quantity, [DISPOSITION OF SCRAP MATERIAL].[Vendor Error], [DISPOSITION OF SCRAP MATERIAL].[Operator Error], [DISPOSITION OF SCRAP...
  6. Kat21

    Adding to a date

    I need to have my query search for a date that a user enters and then it needs to add 4 days because it will run a weekly report. Any help? Ive tried the dateadd function and it does not work.
  7. Kat21

    role of gpa in hiring process

    You don't have to list it on your resume, but that isn't a bad GPA for computer science. If you feel it may hurt you in getting a job don't list it. I didn't and I just showed I had experience and education and recieved the job. Good Luck!
  8. Kat21

    Combining for a report

    Yes I am using access and I just found out the other query was working but now it is giving me the same error.
  9. Kat21

    Combining for a report

    Thanks Terry but I am still getting a error that says site is not part of an aggregate function and it doesnt make sense. I am trying to work off another query called Combined Sales By customer is this the reason I am having the problem
  10. Kat21

    Combining for a report

    I use that and it still tells me that site is not part of an aggregate function. SELECT DISTINCTROW Customer.CustType, Sum([Combined Sales By Customer].UnitsMTD) AS [Sum Of UnitsMTD], Sum([Combined Sales By Customer].SalesMTD) AS [Sum Of SalesMTD], Sum([Combined Sales By Customer].CostMTD) AS...
  11. Kat21

    Combining for a report

    SELECT DISTINCTROW Customer.CustType, Sum([Combined Sales By Customer].UnitsMTD) AS [Sum Of UnitsMTD], Sum([Combined Sales By Customer].SalesMTD) AS [Sum Of SalesMTD], Sum([Combined Sales By Customer].CostMTD) AS [Sum Of CostMTD], Sum([Combined Sales By Customer].SalesPYTD) AS [Sum Of...
  12. Kat21

    Here is the code I am using for combining report

    SELECT DISTINCTROW Customer.CustType, Sum([Combined Sales By Customer].UnitsMTD) AS [Sum Of UnitsMTD], Sum([Combined Sales By Customer].SalesMTD) AS [Sum Of SalesMTD], Sum([Combined Sales By Customer].CostMTD) AS [Sum Of CostMTD], Sum([Combined Sales By Customer].SalesPYTD) AS [Sum Of...
  13. Kat21

    Combining for a report

    I am trying to create a combination report that include both site where customers place orders and the sums of each column after. I am having trouble with the join operation. I am getting an error that says customer is not part of an aggregate function. Any help?

Part and Inventory Search

Back
Top