Search results

  1. I

    Report Parameters for Chart

    Thanks - I'll have to get back to you when I have a chance to pull something together.....
  2. I

    Report Parameters for Chart

    Unfortunately, no. I would have to build one just with this function in it as I cannot share the data that is in this database. As I said in my earlier posts, I can get the query to work fine, but I cannot get it to translate to the crosstab SQL that supports the chart in the report.
  3. I

    Report Parameters for Chart

    yes and yes
  4. I

    Report Parameters for Chart

    =DMin("DateEntered","BufferMgmt") =DMax("DateEntered","BufferMgmt") BufferMgmt is the source table name... what would I use?
  5. I

    Report Parameters for Chart

    TxtAltReportStart=DMin("DateEntered","BufferMgmt") TxtAltReportEnd=DMax("DateEntered","BufferMgmt")
  6. I

    Report Parameters for Chart

    I'm sorry.... what am I missing? SELECT BufferMgmt.BufferMgmtID, BufferMgmt.DateEntered, BufferMgmt.GLLink, GLInfo.AMArea, BufferMgmt.Shift, ZoneProcesstbl.Process, [FirstBreak]+[LunchBreak]+[SecondBreak]+[PostShift] AS TotalTime FROM (BufferMgmt INNER JOIN ZoneProcesstbl ON...
  7. I

    Report Parameters for Chart

    Okay - I see what you are trying to do, .... Here is my new SQL: PARAMETERS [Forms]![HoldingInfo]![TxtReportEnd] DateTime, [Forms]![HoldingInfo]![TxtReportStart] DateTime, [Forms]![ReportFrm]![cboAMZone] Text ( 255 ); SELECT BufferMgmt.BufferMgmtID, BufferMgmt.DateEntered, BufferMgmt.GLLink...
  8. I

    Report Parameters for Chart

    Changing it to: SELECT BufferMgmt.BufferMgmtID, BufferMgmt.DateEntered, BufferMgmt.GLLink, GLInfo.AMArea, BufferMgmt.Shift, ZoneProcesstbl.Process, [FirstBreak]+[LunchBreak]+[SecondBreak]+[PostShift] AS TotalTime FROM (BufferMgmt INNER JOIN ZoneProcesstbl ON BufferMgmt.ProcessID =...
  9. I

    Report Parameters for Chart

    So instead of the WHERE OR statement in my SQL it should be HAVING OR?
  10. I

    Report Parameters for Chart

    Thanks, I read through your thread and it had to do with Between dates - I have that..... my problem is the AMZone criteria. I'm not clear on how this post will help me?
  11. I

    Report Parameters for Chart

    This one has me stumped. I am running Access 2003 and have created a report with a column chart. The chart is based on the following query: SELECT BufferMgmt.BufferMgmtID, BufferMgmt.DateEntered, BufferMgmt.GLLink, GLInfo.AMArea, BufferMgmt.Shift, ZoneProcesstbl.Process...
  12. I

    Sending rich text email via Lotus Notes

    Help - I am trying to wrap my head around some advanced stuff and I think my grey matter has turned to mush.... I am using Access 2003 and I have code which generates an email in Lotus notes from the database. It works really well and we have been using it for a couple of years across a...
  13. I

    External table is not in the expected format

    So, what I did was go to my .xlt file and format the worksheets as tables in Excel 2010 and it worked. Now my issue is the linked worksheets do not automatically update... :-(
  14. I

    External table is not in the expected format

    My company is preparing to move from Office 2003 to Office 2010. I am testing Excel and Access files and encountered this error when running the following code in Access: Sub ExportSpreadsheet() On Error GoTo HandleError Dim objXLApp As Object Set objXLApp =...
  15. I

    Worked in Windows 2000 but not XP Options

    This worked: Msgbox "About to make forms invisible" But, this: DoCmd.SelectObject acReport, stDocName did not. Is there anyway around this without the Msgbox?
  16. I

    Worked in Windows 2000 but not XP Options

    I will give it a try when I return to work in the morning, thank you.
  17. I

    Worked in Windows 2000 but not XP Options

    No, no error pop-up appears. The forms just remain visible over-top of the report.
  18. I

    Worked in Windows 2000 but not XP Options

    My workstation where I work was recently updated from Windows 2000 to Windows XP. I am running Access 2003 and have the following code running Private Sub cmdViewRegisForm_Click() On Error GoTo Err_cmdViewRegisForm_Click Dim stDocName As String Dim strWhere As String...
  19. I

    Trying to find MIN or FIRST date

    Works perfectly. Thank you so much!
  20. I

    Trying to find MIN or FIRST date

    I am running Access 2003 and I am trying to create a query that will provide me with the first date entered for a particular steel coil serial number. I have a table with over 12,000 records. Everytime a steel coil is received from the supplier, its serial number and weight along with the date...
Back
Top Bottom