Search results

  1. DHookom

    Need to print a crosstab report without complete data

    I just left for a week vacation with only phone and iPad. I’ll have to look at this in a week or so. Is there a good reason why there activity yes and activity no fields rather than a single field?
  2. DHookom

    Get date from another table

    Can you provide more information about your tables and relationships? Are you wanting to open a filtered form or report? Have you created the form/report?
  3. DHookom

    ms acces

    Try Crystal Longs tutorials.
  4. DHookom

    Solved Is it possible to use (like) in a query for a field in another table

    You can create joins with like although the join can't be represented in design view. I created a small table [tblCompanyNameParts] with a short text field [CompanyPart] and added a couple records with values "co" and "ow". I then created a query: SELECT Companies.CompanyID...
  5. DHookom

    Update or Requery button

    Why couldn’t you mention your requirements in your first post?
  6. DHookom

    Update or Requery button

    So, did the suggested code work or not?
  7. DHookom

    Update or Requery button

    The code depends on the name of your subform control. It might be something like Me.[your subform].Form.Requery
  8. DHookom

    Need to print a crosstab report without complete data

    Having 12 queries with basically the same SQL and only a slight difference in criteria raises questions. I can't figure out what you are attempting to do. I rarely if ever use tempvars and global variables and when I do, they are documented. They all make any troubleshooting very troublesome...
  9. DHookom

    Report with the Same ID being printed multiple times.

    Without looking at the report or data source, I assume the issue is with duplicate data or an improperly constructed data source.
  10. DHookom

    Solved closing a thread

    Use the search 🔍 with “how to close a thread”
  11. DHookom

    Need to print a crosstab report without complete data

    Access should never have “issues with too many rows”. There is a limit to the number of columns in a query which matches the limit of fields in a table. Twelve queries for twelve weeks sounds like a poor design but I can’t tell since I’m replying from my iPad.
  12. DHookom

    Need to print a crosstab report without complete data

    If you add a Null value to any other value, it will Null the result. For instance Null + 8 = Null. I expect you could just add another row heading like:
  13. DHookom

    Need a new page for each record

    Are you viewing Report View or Print Preview?
  14. DHookom

    disable shift open key

    So, your file name is shifkey.txt not shiftkey.txt?
  15. DHookom

    disable shift open key

    Does your actual file name match your code but when file “shifkey.txt”?
  16. DHookom

    Need to print a crosstab report without complete data

    Which "when I load the form"? Do you actually mean the report "rptNonStandardActionsByPlanWeek" The report errors but if you open the report in design view and display the record source in datasheet, you get Is that what you expected? I found the last report I looked at worked if some the...
  17. DHookom

    Solved Problem creating greeting for a letter(access report)

    I took MajP's code and paste it into a module named modStrings (from the new Northwinds template). I then opened the debug window by pressing Ctrl+G. From there you can test the functions with different values including Null.
  18. DHookom

    Solved Problem creating greeting for a letter(access report)

    I think the logic is complex enough that I would create a small user defined function that would accept the fields as arguments and return the properly formed greeting. This would allow you to use the function everywhere in your application. Functions can include comments regarding the logic as...
  19. DHookom

    Making a form to update multiple tables

    I would change the table structures but it's difficult without some basic specifications. To start, I would use an autonumber primary key in all of my tables. There should be a Sites table with the SiteID and Site_Name. Then your current Sites table would become a junction table of SiteID and...
  20. DHookom

    Posting Problem

    There is a threshold of 100 posts before you can post links. You have a way to go.
Back
Top Bottom