Search results

  1. bob fitz

    Comparing and highlighting records between two subforms

    If CertificationDate is the date that the Cert was issued then it might be better to NOT have an ExpiresOn field in a table but have that date calculated in the query. It is usually considered to be better to do the calculation whenever and wherever it is required than to store it in a table.
  2. bob fitz

    Comparing and highlighting records between two subforms

    I think that would work but you might need to check the length of Cert Validity AS WELL as the checking for Null in CourseID2. Perhaps a 3rd conditional rule. Post back if you need more help :)
  3. bob fitz

    Comparing and highlighting records between two subforms

    I've just had an afterthought. Won't you need to take into consideration the length of time that a certificate is valid for? I noticed a field called "ValidFor". Would I be correct in assuming that this holds the number of days that the certificate is valid for? Do you need to indicate in the...
  4. bob fitz

    Comparing and highlighting records between two subforms

    Always pleased to help if I can ;)
  5. bob fitz

    Comparing and highlighting records between two subforms

    Not sure that I've understood the requirement but see attached:
  6. bob fitz

    Dropdown Combo box with Sub Headings

    So how many products are in the list and how large will it need to become before you decide to structure things properly by creating a "ProductType" related to the "Products" table
  7. bob fitz

    Reference a field created in same query

    Perhaps your criteria should be in a different column
  8. bob fitz

    Solved How to insert data at one go in both the parent table and child table in Microsoft Access

    Nector Perhaps you just need to change the "Data Entry" property of the main form from Yes to No
  9. bob fitz

    Solved Top values for unique records

    Glad to help if I can. Be sure to test well wit more data.
  10. bob fitz

    Solved Top values for unique records

    Try: SELECT Max(YourTableName.SeatimeID) AS MaxOfSeatimeID, YourTableName.CrewID, Last(YourTableName.JoinDate) AS LastOfJoinDate, Last(YourTableName.LeaveDate) AS LastOfLeaveDate FROM YourTableName GROUP BY YourTableName.CrewID ORDER BY Max(YourTableName.SeatimeID);
  11. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    I've certainly not offered any solution. All I've offered is some advice on cross-posting.
  12. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    You may be correct about "new posters", I can't remember that far back anymore :ROFLMAO: Not so sure about the need for new glasses though. In post #12 at: https://www.accessforums.net/showthread.php?t=88955 he said, "Okay thank you, you are awesome. You saved me lol, what did you change so I...
  13. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    I never realized that you were such an optimist ;)
  14. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    I notice that Minty managed it. I always use copy/paste to show a link here. It's never let me down.
  15. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    I wonder if the OP ever did read the link that Minty offered regarding cross-posting :unsure: 👋👋
  16. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    The url for what and where did you try to post it?
  17. bob fitz

    Solved Make new contact list, have assets autopopulate to that contact

    If you could be bothered to read the links that Minty supplied, you might have more success.
  18. bob fitz

    Calculate Days Between Records

    Sounds like a job for DateDiff() function: https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/datediff-function To be of more help we'll need to know something of your table.
  19. bob fitz

    Solved How do I move to a new record automatically in a subform

    I shall remember the name "bmaccess".
Back
Top Bottom