Search results

  1. J

    Displaying data after 30 days

    Thanks, I have tried that but it doesn't work. I have also tried using DateAdd function but to no avail. Do I have to create a form with code to filter data to show after 30 days old?
  2. J

    Displaying data after 30 days

    I have created a database that is used to record the date a specific form called a dispositon is given to a case specialist. So it works like this a client comes into our organization, goes to Deptment A. Department A assigns this case to a specialist with form disposition. The date the case...
  3. J

    RE: Report No Data

    Thanks everyone, works fine.
  4. J

    RE: Report No Data

    RE: Report No Data Thanks for the resonces from the original post however I have already done what was suggested. Let me explain again. I created a form called frmDateRange to search a date range specified by the user and display this chosen range on a report (rptDateRange). All the user has...
  5. J

    Report No Data

    I created a form to allow users to create a report based on a date range. I did so using this code: Private Sub cmdOk_Click() If IsNull(Me.txtStartDate) Or IsNull(Me.txtEndDate) Then MsgBox "Both dates are required for this search!", vbInformation Else: DoCmd.OpenReport...
Back
Top Bottom