Recent content by DHookom

  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...
Back
Top Bottom