Search results

  1. L

    Aggregate query - calculations

    You've probably got a Null used in the multiplication. Use a conditional If with an IsError, e.g. IIf(iserror(a*b,0,a*b)
  2. L

    Add to Combo Box

    And your question is?
  3. L

    2 become 1?

    Quite often multiple queries run faster than a single complex query. I'm a big fan, if it ain't broke and isn't glacially slow, don't fix it.
  4. L

    Generate pdf and save it to the database

    I recall that a report can be saved as a pdf.
  5. L

    Query to combine two tables

    It seems that you want 8 queries: 2 time intervals plus min, max, avg for each. The join those queries on time interval in a query to produce the desired columns you want.
  6. L

    Select top 10 dialled numbers

    Jdraw's solution is incorrect, that is, the SQL ORDER if incorrect, it should be "ORDER BY totsec DESC".
  7. L

    SQL join

    Queries run perfectly if constructed correctly. Improper joins or improper filters create unwanted and unexpected results.
  8. L

    "VBA project cannot be read" error message

    The database has been corrupted, probably because of an abnormal termination or closing of the program.
  9. L

    [Access2000_Form]Date Format for Textbox which is linked with table text field.

    Use the Format property of the textbox.
  10. L

    Select top 10 dialled numbers

    I don't think that the "In(..)" does anything for your. Merely query a query. That's lightning fast.
  11. L

    Best way for Multiple Phone Number for 1 Record

    Use a linked table, possibly a list box, combo box or subform for multiple telephone numbers. It's not rocket science.
  12. L

    Copying from one subform to another

    The requery is probably killing you change. Think about the data source of updated field is. Don't requery after the update.
  13. L

    Where to locate a form in Function

    It definitely in the Navigation Pane on the left side of the Access window.
  14. L

    Using a union query in conjunction with a filter

    Add the filter to which is SELECT is appropriate.
  15. L

    Toggle Filter doesnt work for 1 field

    I don't think tjat your using the instruction correctly. Take a look at this.
  16. L

    Combo Box Searching

    Ordinarily subforms usually tumble wit a main form. What's the subform to display before the combo box row is selected? One method is to use the subform Filter and FilterOn properties be set of th combo box AfterUpdate event. What are you going to do on the subform, after the records are...
  17. L

    Form update quit working

    Sounds like you need to Requery the combo boxes.
  18. L

    Open sub report from main report by selecting report name

    You can't select the subreport after the report is opened except by using a blank subreport, the sourceobject of which is determined on the format {whatever} section the subreport is located. Alternativlely, have several reports, each with a different subreport and determine which t open.
  19. L

    report with chart, strWhere

    Your SQL is wrong in syntax: Try DoCmd.OpenReport "R_APdailyplan2", acViewReport, , "tTaskDueDate <=#" & Date() & "#" Adjust the other SQL strings accordingly. Think about what the why with what I've displayed.
  20. L

    Date Validation

    if me.[Clearance Date] < me.[loading Date] AND me.[loading Date] < me.[clearance date] then dates failed - do whatever else dates passed - do whatever end if It looks like you dates have a time component, if so use the Date function to clear the time component of the dates. Sorry...
Back
Top Bottom