Search results

  1. A

    Grouping multiple rows

    What i am trying to do is group the raceways and have one row for each raceway... do this by grouping the packages and seperating them by ", " is this possible in a query or do i have to use a module? so i want it to look like this Raceway Package 1EECBX01 1APC-01, 1BMC-01, 1CCC-01...
  2. A

    query sort by week

    help please...
  3. A

    query sort by week

    from looking more into it... it also doesn't add correctly or show all the fields...
  4. A

    query sort by week

    i dono if this will work... never done it... http://www.filejumbo.com/Download/B22077746FA736CA - i forgot to show the database window so you will need to download... make a new database and import the table and query but what i did was made another database with just the information...
  5. A

    query sort by week

    it works on both there^^^
  6. A

    query sort by week

    SELECT EnterJobLabor.Rate, Sum(EnterJobLabor.HoursWorked) AS SumOfHoursWorked, EnterJobLabor.DateWorked FROM EnterJobLabor GROUP BY EnterJobLabor.Rate, EnterJobLabor.DateWorked HAVING (((EnterJobLabor.DateWorked)=([dateworked]-Weekday([dateworked])+7))) ORDER BY EnterJobLabor.DateWorked; i...
  7. A

    query sort by week

    hmm... yeah... 1, 1.5, and 2
  8. A

    query sort by week

    no... it doesn't
  9. A

    query sort by week

    i thought it looked oka... but i know for a fact that there should be a rate of 1 for each week just like there is a 1.5 but the 1 isn't showing....
  10. A

    query sort by week

    Oh... here SELECT EnterJobLabor.Classification, EnterJobLabor.Rate, EnterJobLabor.Shift, Sum(EnterJobLabor.HoursWorked) AS SumOfHoursWorked, EnterJobLabor.DateWorked FROM EnterJobLabor GROUP BY EnterJobLabor.Classification, EnterJobLabor.Rate, EnterJobLabor.Shift, EnterJobLabor.DateWorked...
  11. A

    query sort by week

    shift should be a 1 or a 2 - that works class is jw,ad,pm,op,ef... etc. - that works rate should be 1, 1.5 or 2 - doesn't work
  12. A

    query sort by week

    i showed a picture.. does it work?
  13. A

    query sort by week

    i have a query i am working on that is sorted, sumed and grouped... i have it grouped by 4 fields (date, class, rate, shift) with one sumed field (hours). it doesn't group and sum the data correctly. here is the SQL SELECT EnterJobLabor.Classification, EnterJobLabor.Rate...
  14. A

    Chart Problem

    oka i have this chart... as you can see (in the blue area) i have the same date popping up... i cant seem to figure out why its doing it... here is the row source for the chart SELECT ([pulled Date]-Weekday([pulled Date])+7),Sum([Length]) AS [SumOfLength] FROM [Chart Abs 4] GROUP BY...
  15. A

    charts by Week

    Thanks... i got it to work with this... TRANSFORM Sum([Chart Abs T].[Sum Of From]) AS [SumOfTerms] SELECT ([ft Date]-Weekday([ft Date])+7) AS Expr1 FROM [Chart Abs T] GROUP BY (Year([FT Date])*CLng(54)+DatePart("ww",[FT Date],0)-1), ([ft Date]-Weekday([ft Date])+7) PIVOT [Chart Abs...
  16. A

    charts by Week

    this is my chart as of now... i want to change the week number to a date
  17. A

    charts by Week

    TRANSFORM Sum([Chart Abs T].[SumOfSum Of From]) AS SumOfTerms SELECT (Format([FT Date],"ww"" '""yy")) AS Expr1 FROM [Chart Abs T] GROUP BY (Year([FT Date])*CLng(54)+weekday([FT Date],vbmonday)+1), (Format([FT Date],"ww"" '""yy")) PIVOT [Chart Abs T].clientid; like this? i'm new to all of this...
  18. A

    charts by Week

    TRANSFORM Sum([Chart Abs T].[SumOfSum Of From]) AS SumOfTerms SELECT (Format([FT Date],"ww"" '""yy")) AS Expr1 FROM [Chart Abs T] GROUP BY (Year([FT Date])*CLng(54)+DatePart("ww",[FT Date],0)-1), (Format([FT Date],"ww"" '""yy")) PIVOT [Chart Abs T].clientid; this is what it looks like in sql...
  19. A

    charts by Week

    can you help?
  20. A

    charts by Week

    i tried... i cant get it to work correctly... i can change it to show daily but i need it to group by week still jus to show the date not the week number
Back
Top Bottom