Search results

  1. DHookom

    Help query Count

    try: SELECT tblTickets.IDTicket, Count(tblTickets.ID) AS CountOfID FROM tblTickets GROUP BY tblTickets.IDTicket, tblTickets.Status HAVING (((tblTickets.Status)=1));
  2. DHookom

    Single project composed of different sections - how supply different versions?

    This project would require a robust database like SQL Server or Azure. The whole integrated system seems like SAP or Dynamics. I wouldn’t attempt to roll your own if your business depended heavily on it.
  3. DHookom

    Pop-up message when converting Access report to PDF

    Just look away from the screen 😉 I believe this has been discussed here before with no easy solution.
  4. DHookom

    Hidden dropdown items

    I would add a column/field that stores whether or not the status is still in use. You should not be hard-coding <> 4 AND <>5.
  5. DHookom

    Calendar events but not in Outlook

    There is an API for google calendar which I haven't reviewed. You can also import from various other calendars as well as CSV.
  6. DHookom

    Calendar events but not in Outlook

    Have you considered a shared google calendar? I have done this with several organizations.
  7. DHookom

    Differences in date management between Win10 and Win11

    I would experiment with some different values and delimiters in a query and a pass-through query.
  8. DHookom

    Solved Detect whether a combobox selection has actually changed or just reselected?

    Is the combo box bound? According to documentation: "Microsoft Access uses the OldValue property to store the original value of a bound control"
  9. DHookom

    Solved Family not included in aggregate function

    I believe with aggregate functions like Min or Max, you will need the Group By.
  10. DHookom

    Need to print a crosstab report without complete data

    I’m traveling out of town this week without a laptop so won’t be able to reply. Did the PDF report pages correspond with the desired output based on the data in the file you provided? If not, could you provide files that align?
  11. DHookom

    Date Filter not working

    Try add the date delimiters Dim strSQL As String strSQL = "TransactionDate = #" & Format(Me.DatePicked, "m/d/yyyy") & "#" Me.Filter = strSQL Me.FilterOn = True
  12. DHookom

    Solved Query sorting

    @Gasman and I both mentioned "last line". Did you try before reply?
  13. DHookom

    Solved Query sorting

    Your ORDER BY is in the middle. Try move it to the end of the SQL statement.
  14. DHookom

    Solved Combining IIf Statements

    I'm in and out of Eau Claire for a banquet. Might not even have time to visit my grandkids.
  15. DHookom

    Solved Combining IIf Statements

    I’ll be in WI tomorrow 😉
  16. DHookom

    Solved Combining IIf Statements

    Isn’t there payroll software that does all of this for you?
  17. DHookom

    Solved Sum the data in a textbox in continous form

    Does your code compile? I don't see an "If ... Then" line in Private Sub OrderDtl_frm_Exit(Cancel As Integer). I hate using ElseIf when it is much easier to use and maintain Select Case.
  18. DHookom

    Solved In a continuous form : Disable / lock a textbox on a specific record on clicking a button within that record. Any way it can be done ?

    Conditional formatting does allow disabling. In the following form, I have set up conditional formatting based on even or odd CompanyID values.
  19. DHookom

    Solved In a continuous form : Disable / lock a textbox on a specific record on clicking a button within that record. Any way it can be done ?

    I have used a solution with a hidden text box in the form header to store the primary key values of the selected records. Then create a conditional formatting rule that determines if the current record's primary key is contained in the hidden text box. You would need to have some code in the...
  20. DHookom

    Solved Combining IIf Statements

    You can test your code/functions in the immediate window (press Ctrl+G) and enter the function with some sample values ?ReturnData(1, 50000, 25000, 1000, 2500) This will run your code and return the results. Play with a variety of different values/scenarios to confirm all possibilities. You can...
Back
Top Bottom