Search results

  1. DHookom

    Need to print a crosstab report without complete data

    I asked for a query with "User/client, Standard Action, Challenge/Day Type, Date, and the numbers displayed" and you provided a query in post #88 with User, Action, Loop, WeekNumber, Index (?), StartTimeAchievmentDays (?), StarTimeEngagementDays (?), ActivityAchievementDays (?)...
  2. DHookom

    Row Height of subform reverts back

    Do you have any “save” code in your form/subform? I don’t recall ever experiencing a row height saving after closing a form.
  3. DHookom

    Combox uses 'wrong' value list

    For the same reason @Ken Sheridan limits value lists to immutable values, I rarely use Yes/No fields. I have run into too my projects where values aren’t that black and white so a “kinda/maybe” needs to be added as a choice.
  4. DHookom

    Solved Add Record VBA Not working

    I expect the subquery with the TOP 1 could be replaced by DMax(). If there are a large number of records, this would be very inefficient.
  5. DHookom

    Solved Add Record VBA Not working

    I would try remove this section of the query ( SELECT TOP 1 A.SalaryAnnual FROM tblSalary AS A WHERE A.IDSalary < tblSalary.IDSalary ORDER BY A.IDSalary DESC ) AS PreviousValue, [SalaryAnnual] -...
  6. DHookom

    To Merge or Not To Merge... Backends

    If you want to maintain referential integrity between your tables, they need to be in the same ACCDB file. You must also consider the combined size of all the tables since Access has a size limit.
  7. DHookom

    Solved Age calculatoion Function

    Doug Steele has a more complete age calculation function.
  8. DHookom

    Help with moving Access database

    The path is a folder, not a file.
  9. DHookom

    “Add A New Record” function is not working

    I suggest you review this thread about saving records in a bound form.
  10. DHookom

    Help with moving Access database

    I have mapped a folder on my drive as a hard drive using instructions like this. Then add any required subfolders and place your back-end there to relink. This creates a similar environment.
  11. DHookom

    Help with moving Access database

    Each user should have Access untimely installed and their own copy of the front-end file. The f-e must be in a trusted location.
  12. DHookom

    The printer does not cut on each record

    So the paper isn’t perforated or scored since the printer has a “scissors” or blade that should make cuts after every label/record. Sounds like you need only set the paper size to the proper dimensions and match this with the detail section size.
  13. DHookom

    The printer does not cut on each record

    I’m trying to understand what you mean by “make the cut”. Does your printer have some type of blade or are you talking about spacing or grouping in your label report?
  14. DHookom

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    Does it make a difference if you change the order of the files in the processing cue?
  15. DHookom

    Crosstab query that uses Form field as criteria

    I will use Column Headings to create daily, weekly, or monthly totals for the past ten units. For example in the Northwind, to get the last ten days of sales by salesperson, use this SQL which looks at the txtEndingDate. TRANSFORM Sum([Quantity]*[UnitPrice]) AS Expr2 SELECT Employees.LastName...
  16. DHookom

    Crosstab query that uses Form field as criteria

    You can always add some simple VBA code to loop through the unique departments to build your crosstab SQL statement. I do, however, reserve the column headings mostly to date related values since most of my crosstabs are record sources for reports.
  17. DHookom

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    I would create a query with this SQL to show all your import/export specs SELECT MSysIMEXSpecs.SpecName, MSysIMEXColumns.FieldName, MSysIMEXColumns.DataType, MSysIMEXColumns.IndexType, MSysIMEXColumns.Start, MSysIMEXColumns.Width FROM MSysIMEXColumns INNER JOIN MSysIMEXSpecs ON...
  18. DHookom

    Crosstab query that uses Form field as criteria

    From my experience, parameter types are NOT always required when referencing a form control in a crosstab query. Setting the column headings should remove the requirement. This of course will only work when the column headings are known, static values like months, days, numbers,etc. for...
  19. DHookom

    Access object inventory system that can find derelict objects?

    You can’t post URLs until you have posted 100 times. This includes replying to a post that includes an URL. I used a lot of posts welcoming new members 😁 to get up to 100.
  20. DHookom

    Open report without printing

    I would change the SQL of a saved query in code just prior to opening the reportUrey would be the record source of the report and would filter as desired
Back
Top Bottom