Search results

  1. J

    Run time error '438'

    The control name for the combo box on the form is Owner Name and it is pulling from a query: SELECT [Owner Extended].[Owner Name] FROM [Owner Extended]; The Owner Name is then passed to the report control named Assigned To which is numeric
  2. J

    Run time error '438'

    Your question made me realize that I had a numeric field and that I had it in the wrong place. This is what I have now: stLinkCriteria = "[Assigned To].[ID]=" & "Me![Owner Name]" however when I run it I get asked for the criteria for these two items, which I don't want. I just want it passed...
  3. J

    Run time error '438'

    Hello all, I'm using the code below to filter and open a report in access 2007. When the code fires I get the following error message: Run time error '438': Object doesn't support this property or method. Debug goes the line in bold below. I'm not a VBA coder by an means, so any help would...
  4. J

    Using a combo box to filter and open a report

    I've looked at every post I could find in the forums regarding this, and tried every thing, but I still can't get it to work and it's giving me a headache. All I want to do is make a selection in the combo box and have it open a report filtered based upon the combo box selection. The combo box...
  5. J

    Possible to store calculated date?

    Just shows how much a of a newb I am...didn't even realize you were giving me an example. Tried what said, works like a charm. Thanks!
  6. J

    Possible to store calculated date?

    I'm still using 2007, but doing it in a query should work just as well. My next question is if you don't have a field in a table how can you pull it into a query, i.e., if there's no "date" field in the table, how can you create a "date" field in a query?
  7. J

    Possible to store calculated date?

    I have a table that contains several dates, two of which are an opened and closed date. I currently use datediff to calculate the number of days between those two dates and display that number on a report, but because it's a calculation instead of data in a table I can't sort/search by number...
  8. J

    Protect Audit Table

    You do or you don't want to protect the fields. And is it the field you want to protect or the data in the field?
  9. J

    The value you entered is not valid for this field?????? Please Help!!!

    Sounds like ItemNum has a data type of number, but you're using numbers and text. Try changing the data type to text.
  10. J

    Report Date Calculation

    Figures it was something right in front of my face. Ugh. Thanks much!
  11. J

    Report Date Calculation

    I made one slight change, from Opened Date to Mangement Close Date. =IIf(IsNull([Management Close Date]),DateDiff("d",[Management Close Date],Date()),DateDiff("d",[Opened Date],[Management Close Date])) I only want two scenarios: Management Close Date is Null - datediff between Opened Date and...
  12. J

    Report Date Calculation

    Hi all, I've currently got a report that takes two date fields and calculates the number of days between the two dates. The problem I am having is that I need the number of days to be calculated even when the Management Close Date field does not have an actual date entered into it, i.e. it...
  13. J

    text box instead of combo box

    I was wondering if it is possible to use a text box to look up data as opposed to a combo box. For some reason when I try to use OpenForm for a click event on a combo box it won't open the form I need to open, but with a text box it works just fine.
  14. J

    Ebedded Macro won't open form

    I'm trying to get an embedded macro to open a form when the field is clicked. I would think this would be pretty straightforward, but apparently not. The control is a combo box and the onclick event is set for embedded macro. The macro calls OpenForm with the arguments of Reports...
  15. J

    Advice for Linking DB's

    Any other thoughts on this?
  16. J

    Advice for Linking DB's

    At present there's a disconnect between the reports and the issues within the reports. DB1 contains the high level report information while DB2 contains the issues associated with the reports in DB1, but they are not tied together. Tying them together will allow for better reporting on reports...
  17. J

    Advice for Linking DB's

    Hello all, I have two DB's: One that holds reports, the report writer, and other details, and a second DB that hold issues that are associated with the reports, who owns the issue, etc. These were built separately and before my time, and it appears it was done this way because they were trying...
  18. J

    Dbl Click on subform to open form

    Awesome. Worked like a charm. Thanks!
  19. J

    Dbl Click on subform to open form

    Hello all, I've got a form with two subforms in it. The main form is named frmReports and the subforms are frmExeceptionsSub and frmResponseSub. When the main form is opened the Exceptions subform will pull in all records relating to the Report identifed in the main form, and the response...
  20. J

    Updating linked tables after conversion

    Nope, all of the tables are still there.
Back
Top Bottom