Search results

  1. DHookom

    Sorry folks, Access World will not accept my posts

    There are specific rules defined in this forum that don't allow some types of content in posts from participants with less than 100 posts. I recall watching my post count grow to 100 so I had full rights.
  2. DHookom

    New Here

    Great to see you here Ken.
  3. DHookom

    Sorry folks, Access World will not accept my posts

    @Woodpecker has had less than 40 posts.
  4. DHookom

    I need help. How can I display the Total Amount and Net Amount on the main form? I am not able to do it. Please help.

    Place a text box in the subform header with these properties Name: txtAmtTotal Control Source: =Sum([UnitPrice]*[Quantity]-Nz([Discount],0)) Then change the text box on your main form to: Control Source: =[SaleDetails].[Form].[txtAmtTotal]
  5. DHookom

    Sorry folks, Access World will not accept my posts

    Can you take a screen shot of your error message or is that prohibited also? We can't see your screen.
  6. DHookom

    Sorry folks, Access World will not accept my posts

    I believe the number of posts required is/was 100.
  7. DHookom

    Conditional Formatting

    I can’t help but question the hard-coding of values in expressions. I would think that the values might be unique values in a lookup table. Perhaps you want to include or exclude #7 and #9 in the future. If possible, I would add a field to a table that would group/categorize these values. Data...
  8. DHookom

    Conditional Formatting

    You could also try: [NewLineDesc] Not In ("#1", "#2")
  9. DHookom

    Moving objects on form

    I didn't think it was too much older than 10 years so I googled it. There are a number of dates starting in 2011 but it suggests a public release in 2015
  10. DHookom

    Moving objects on form

    PBI is only 10 years old. To me, “500 forms” makes PBI even more attractive.
  11. DHookom

    Moving objects on form

    I would consider using PowerBI.
  12. DHookom

    UPDATE with LEFT-JOIN (conditional update query)

    You could remove the qryOutstanding stuff and use a domain aggregate function like dLookup().
  13. DHookom

    Solved Form Filter in VBA

    The OP stated “When I save the form filter” which isn’t the same as QBE.
  14. DHookom

    Solved Form Filter in VBA

    I never use the table name in these situations. This also assumes you won’t have repeated field names from more than one table.
  15. DHookom

    Misleading Grouping Claim

    I don’t find it misleading. I don’t think it mentions “container” and it accurately describes “select all the controls”. I’m happy with the help text as you quoted it and have always expected the behavior.
  16. DHookom

    Solved IsNull not working in query

    Are you positive your fields are not zero-length-strings rather than Null? I have always used FieldName Is Not Null rather than Not FieldName Is Null
  17. DHookom

    Solved Sum of 3 columns sort by 3 diff. dates

    Any time I see a question asking about calculating across fields, I assume the table isn’t normalized. In this case, I would have created a payment table with fields: TransactionID, [ParentID], TransactionType, TransactionDate, and TransactionAmount. There would be three records rather than...
  18. DHookom

    VBA to Conditionally Format a Chart

    I have seen where separate columns are added for each range so in your case there would be three extra columns with either the appropriate value or 0. Then create a stacked bar chart and set the colors as you desire.
  19. DHookom

    The records not sorted by the record ID field in ascending order in a continuous form after adding new records

    What do you mean by “that is by default sorted by the ID field”? Are you using an ORDER BY somewhere that sorts by ID? I would never assume records will display in any reliable order without some setting or SQL order.
  20. DHookom

    From Forms** combobox select services, services be saved in row for each customer.

    I’ve created un-normalized input forms to match timesheets or other forms that make the most sense and provide ease of use for employees/users. The code to load for edit or save to a normalized table is trivial. I wouldn’t make my users change their sensible paper forms or data entry screens...
Back
Top Bottom