Search results

  1. 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.
  2. DHookom

    Calendar events but not in Outlook

    Have you considered a shared google calendar? I have done this with several organizations.
  3. 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.
  4. 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"
  5. DHookom

    Solved Family not included in aggregate function

    I believe with aggregate functions like Min or Max, you will need the Group By.
  6. 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?
  7. 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
  8. DHookom

    Solved Query sorting

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

    Solved Query sorting

    Your ORDER BY is in the middle. Try move it to the end of the SQL statement.
  10. 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.
  11. DHookom

    Solved Combining IIf Statements

    I’ll be in WI tomorrow 😉
  12. DHookom

    Solved Combining IIf Statements

    Isn’t there payroll software that does all of this for you?
  13. 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.
  14. 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.
  15. 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...
  16. 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...
  17. DHookom

    Solved Sum the data in a textbox in continous form

    What are the expressions in the detail section and form footer?
  18. DHookom

    Solved Sum the data in a textbox in continous form

    You could try Sum() the statement from the text box. =Sum([your statement here])
  19. DHookom

    Solved Combining IIf Statements

    I took one of your expressions and began creating a function with comments about the process I go through in your other thread. You need to start the conversion and a new thread when you begin to stumble (we all do).
  20. DHookom

    Make a negative number a "0"

    Here's how I would go about converting the expression into a VBA function in a standard module named modBusinessCalcs. You can test this in the immediate window by using: ? YourFunctionName(value1, value2, value3,...) You should also understand how to add a breakpoint to allow your to step...
Back
Top Bottom