Search results

  1. D

    Refer to A Private sub

    GO IT! Thank you all.
  2. D

    Refer to A Private sub

    I think what I am missing is how to call the public from the private?
  3. D

    Refer to A Private sub

    What you are saying is I can make a public sub and put all the code written to private subs in there. Correct? If that is the case then how do I activate that after update of the combo box? Currently I goto the properties and assign an event proceedure to the after update and it makes it a...
  4. D

    Refer to A Private sub

    First, I must apologize I am a novice and may not have all the correct terminology, but I should be able to get my question accross. I have a form with 4 combo boxes (Combo150, Combo170, Combo158 and 160) that are used to filter a sub form, which works fine as long as I filter in order. What I...
  5. D

    Export data from a filtered subform

    Thanks! I tried this and it worked.
  6. D

    Export data from a filtered subform

    I have a form with a subform that filters based on my selections. For example I can select a vendor , a status and task type and my subform shows me my records as I filter. Is there a way I can export what I just filtered to Excel?
  7. D

    Date Value

    Thanks. I was able to resolve by opening a blank DB and importing everything into it. Which after reading your resolution I think was a long way of doing what you said.
  8. D

    Date Value

    I have a DB that I use the date() function in a form as a default value and just Date in the code for comparison of today. This works fine on all my computers. When I tried running the DB on 2 other computers I get an error at start up and all the default dates show as Name? and I get VB...
  9. D

    Formula showing in cell, not returned value

    More and more I have been running into an issue when I put in put a formula in a cell (especially Vlookups) in a cell it just stays as an entry as if the equal sign wasn't there? Any idea as to be what is causing this? My most recent example is below. =VLOOKUP(D2:D79,'[Invoice Hx Macro...
  10. D

    If then In a query Statement

    Can't get much simpler than that. It worked thanks!
  11. D

    If then In a query Statement

    I am stumped and need some help I have a simple select query used in a combo box to filter what is shown. As shown below. SELECT [Task Type Drop].[Task Type Id], [Task Type Drop].[Task Type], [Task Type Drop].[Task Category], [Task Type Drop].[Task Type Definition] FROM [Task Type Drop] WHERE...
  12. D

    Filter Help

    Thank you that worked!
  13. D

    Filter Help

    I have a form [Local Delivery History] with a subform [Local Delivery subform] on the main form I have a text an unbound text field [Text20] formated for a date. I want to be able to do an after update filter using this form. I tried Me.[Local Delivery Subform].Form.Filter = "([Ready Date]...
  14. D

    Combo Filter

    How can I filter a combo box to show only options available in a subform I have filtered? I hope I can make this clear. This is the start of my code: If IsNull(Me.Combo27) Then DoCmd.RunCommand acCmdRemoveFilterSort DoCmd.RunMacro "Local Hx hide Filters", , "" ElseIf Not IsNull(Me.Combo27)...
  15. D

    Combo Box Filter

    How can I filter a combo box to show only options available in a subform I have filtered? I hope I can make this clear. This is the start of my code: If IsNull(Me.Combo27) Then DoCmd.RunCommand acCmdRemoveFilterSort DoCmd.RunMacro "Local Hx hide Filters", , "" ElseIf Not IsNull(Me.Combo27)...
  16. D

    Time Calculation

    That worked. Thanks
  17. D

    Time Calculation

    I am struggling with a filter I thought would be simple. I have a field called close time and I want a filter that will show a record one hour before the close time?
  18. D

    Multiple Filters on one subform

    It worked. I truly appreciate your help, Ken!
  19. D

    Multiple Filters on one subform

    I tried doing : Me.[task detail subform].Form.Filter = "[Person Responsible] =" & Me!Combo107 And Me.[task detail subform].Form.Filter = "[status] =1" but I get a type mismatch error. Status is a field I have a look up to. (Example 1 = open)
  20. D

    Multiple Filters on one subform

    I currently have code on click to filter a subform based on a combo box and it works great. (see below) Me.[task detail subform].Form.Filter = "[Person Responsible] =" & Me!Combo107 Me.[task detail subform].Form.FilterOn = True The problem is I also need to only show records that have a 1, 2...
Back
Top Bottom