Search results

  1. pbaldy

    Hello from Va

    Welcome from an occasional visitor to VA. :p
  2. pbaldy

    Maintenance Machines Running hours Database

    For clarity as it seems confusing and you use the term "frequency", are services repeated? In other words, if a machine requires the 100 hour service, is it done again at 200, 300, etc hours? Or just once at 100 hours and never done again?
  3. pbaldy

    Bring To Front & Send Back Properties using VBA

    Like I said, mine was a brute force attack. I suspect it could be done much easier with a Gantt chart, but I have no experience with them. Search on that and see what you find.
  4. pbaldy

    Bring To Front & Send Back Properties using VBA

    That doesn't seem at all like the original request. I did something along these lines a long time ago to display limousine reservations on a given day. If memory serves I used a brute force method of populating a temp table with reservations within a loop. I'm sure there's a better way, I did...
  5. pbaldy

    UBI

    I had a discussion/debate with a son-in-law about this very topic a while back. His position was that with all the automation by Amazon and other big companies there wouldn't be enough jobs and we needed a UBI. His suggestion was $1,000/month for every man/woman/child in the country. I did...
  6. pbaldy

    Bring To Front & Send Back Properties using VBA

    What is your code now? Do you get an error, or the results aren't as desired? If the second, what are you expecting to happen vs what does happen?
  7. pbaldy

    Bring To Front & Send Back Properties using VBA

    Did you try the code from the link in post 2?
  8. pbaldy

    Bring To Front & Send Back Properties using VBA

    How about: https://stackoverflow.com/questions/39497486/is-correct-the-code-for-bring-to-front-or-send-to-back
  9. pbaldy

    Solved How to get the unique rows in sql server report

    Note this was posted in the SQL Server forum.
  10. pbaldy

    Evening All,

    Welcome back aboard!
  11. pbaldy

    Solved How to get the unique rows in sql server report

    Did you try the method from the link? Given your example above: SELECT Invoice, Sum(Total) As SumTotal FROM DetailsTable GROUP BY Invoice That's just the basics, you can add the other table and fields as desired. The key is to group by the fields you want to be unique and sum the others.
  12. pbaldy

    Solved How to get the unique rows in sql server report

    I think you want what's known in Access as a totals query. Here's a start for SQL Server: https://learn.microsoft.com/en-us/sql/t-sql/functions/sum-transact-sql?view=sql-server-ver16
  13. pbaldy

    Solved Low Date not seeing the previous year

    Happy to help!
  14. pbaldy

    Hello everyone !

    Welcome aboard!
  15. pbaldy

    Can everyone agree at least on this perhaps?

    I can't even bring myself to click on the link. :cry:
  16. pbaldy

    Updating Excel spreadsheet from within the Access

    I use: lngLastRow = xl.Cells.SpecialCells(11).Row
  17. pbaldy

    Too many popups on query run

    You can change an option but that only fixes it on your computer. https://www.baldyweb.com/SQLWarnings.htm
  18. pbaldy

    Solved Low Date not seeing the previous year

    I'd use this which would be more flexible (any number of inputs): http://allenbrowne.com/func-09.html
  19. pbaldy

    Check/Uncheck boxes on subform based on main form

    Sorry, I missed the big picture.
  20. pbaldy

    Check/Uncheck boxes on subform based on main form

    How about .Fields("ReleaseSingleEntry") = Me.chkReleaseALL
Back
Top Bottom