Search results

  1. DHookom

    Help with Separating into Rows

    Do you have a table of each unique data values? If so, this could be accomplished with one simple query. For instance a table [Datas] Data 105674 130351 14398 14421 17816 17817 17818 19183 19184 19303 19894 21092 3692 You could create a query with SQL of: SELECT SKUs.SKU, Datas.Data FROM SKUs...
  2. DHookom

    Quick question regarding navigating records

    Wouldn't a move of a single record, be a single triangle?
  3. DHookom

    Quick question regarding navigating records

    Those are Navigation buttons and there are lots of options. Search the web for “ms access custom navigation buttons”
  4. DHookom

    One to Many query question

    Thanks for the more digestible SQL. Having the first and last names the same shouldn’t be an issue when including the ID field. I doubt performance will be an issue with this application but it is good to understand the advantages of the subquery method.
  5. DHookom

    One to Many query question

    Using a subquery seems overly complex when a simpler SQL statement should meet the stated requirements.
  6. DHookom

    Query Dilemma

    If I was going to create a solution for this, I would probably create a generic function that would accept a date, a time period like week or month, an offset of periods (positive or negative), and the day of week. The returned date would be a specific day of the week, x number of weeks or...
  7. DHookom

    One to Many query question

    To get the most recent payment for each payer your query would be a totals query grouping on FkDemoID and returning the Max of the GiftDate. This can be combined with the demographics table if you need additional data.
  8. DHookom

    Error 2766 - object doesn't contain the automation object '|."

    Is there any code/VBA in the form? Are there any unique types of controls? Is the recordsource a table or plain vanilla query?
  9. DHookom

    Query Dilemma

    2/23/2025 isn't a Saturday. Did you try the query? It seemed to work for me with all the dates in the Northwind Orders. Open the immediate window and enter: ?DateAdd("d",-Weekday(#2/18/2025#-2),#2/18/2025#) and ?DateAdd("d",-Weekday(#2/18/2025#-2),#2/18/2025#)+5 You should return the requested...
  10. DHookom

    Need to print a crosstab report without complete data

    I'm at a loss trying to understand your application.
  11. DHookom

    Query Dilemma

    If the date is a Monday, do you want the previous Monday to be the entered date or a week prior? Using the Orders table in Northwinds, this query should provide the OrderDate and the previous Monday - Saturday SELECT Orders.OrderDate, DateAdd("d",-Weekday([OrderDate]-2),[OrderDate]) AS...
  12. DHookom

    Problem with Word mail merge from query

    I would use VBA to export the query results to a CSV file and then open the Word document. The Word document will use the CSV file.
  13. DHookom

    Problem with Word mail merge from query

    It would be easy to remove the parameter and test. I usually export a query to a text/delimited file from Access and then open the Word document.
  14. DHookom

    Solved setfocus to field in subform directly

    You could have the subform be invisible until the CustomerName is entered/selected on the main form. You would probably want to make the subform visible in the On Current if the CustomerName wasn't blank.
  15. DHookom

    Problem with Word mail merge from query

    What did you try when presented with the Login form? Did you try click on the OK button or Cancel? What happened?
  16. DHookom

    Textbox used to specify delimiter, can't use space in procedure

    Have the user enter “s” for space and then handle it in you code.
  17. DHookom

    Hello, New here

    It looks like the crosstab is doing what you asked it to do. Can you provide a screen shot or other of what you expect/want?
  18. DHookom

    pdf shrinks report

    I would use the Microsoft print to PDF.
  19. DHookom

    pdf shrinks report

    You now mention “importing”. What do you mean by this?
  20. DHookom

    pdf shrinks report

    Sounds like an issue with margins. Are you suggesting there is a significant difference between the print preview and the pdf? Can you explain “shrinks the pages”?
Back
Top Bottom