Search results

  1. J

    Table setup for rollup

    The database is used form logging test procedures for timing tracking. An engineer will log a test at the lvl 6 requirement and log the time for that test run. As we have close to 300 engineers you can see how the amount of lvl 6 items will increase very quickly for a given product. Management...
  2. J

    Table setup for rollup

    I have a table that i have to incorporate in to a tool I am currently working on. It is a large (3200 line) excel table. the 3200 lines are our level 6 test conditions. Each of those will roll up from level 5 to level 1 becoming grouped until level 1 includes only 3 lines. My question is...
  3. J

    Math on query

    I have a query i use to return some time lengths for test runs. The user inputs a start and end date and time for multiple test categories, the query will pull those results and use datediff to determine the length of the test. The issue is that a single test run, ie id 1032, can include...
  4. J

    Budget table design

    I have a table that tracks, monthly and yearly, budgets and actuals for head count. As of now I have columns for month, year, budget, and actual. Recently i have thought that changing the budget and acutals columns to type and value would be more appropriate. For example: Current: CalMonth...
  5. J

    Looking for better way to do this chain query

    Thank you very much for the help, that is a nice elegant and readable method to solve my dilemma. I do have a question, I have never used it before so what is the purpose of the "Property" function? Why use property instead of something like just a variable? Forgive the question if the answer...
  6. J

    Looking for better way to do this chain query

    I have what I am going to call a chain query that works, however I believe there is a more concise and clear way to write it out. Here is what I want and how it works. The form where the query is essentially defaults to all records. There are three filter values that a user can choose...
  7. J

    Query display all, even blank

    It represents the test metrics that product are tested against. For example one might be sound under a certain condition.
  8. J

    Query display all, even blank

    Well I have the TestDetails table, that links the TestData table, this table stores each test session, to the ASRLineItems table, this table is the "test metric" table. Each test session, i.e. "TestID" can have more than one metric and each metric can be run more than once.
  9. J

    Query display all, even blank

    Hopefully I can explain this clearly. I have a database that tracks prototype testing. Each time an engineer performs any testing on a product they are to log the start and end times of their usage. The idea is to get an accurate utilization measurement of prototype usage. The company has a...
  10. J

    Question Local Defaults for user

    I figured out a way to do it. I have added a local table that stores the default information and a user input form that does not allow addition to the tables, only edits. This will hold the defaults and i am using a DlookUp to pull those values and use them in the new record input form.
  11. J

    Question Local Defaults for user

    That part i have got to work, however I would like to store those values, so the next time the user opens his/her copy of the database it has the values entered previously. I have been able to get the defaults to work in a single session. However i would like to store them in a way that allows...
  12. J

    Question Local Defaults for user

    I have a database that will be in use and to simplify user entry i am hoping to get some help in storing some default values for each user. Each user has a local copy of the front end of the database while the back end is stored in a network location. As part of the input process each user...
  13. J

    Weird issue with form control source

    I am having an odd issue. I found and adapted a calendar database I found online. It is based on a database by Peter Hibbs. I tested all of it and got it working within its own database then I imported all of the pieces in to my actual dev database. All functions work correctly and all code...
  14. J

    Code run speed on SharePoint linked list

    Mihail -- Thank you so much for your help. I implemented your solution in to my dev database and everything works great, no slow downs and everything still works. The solution you came up with was great. I would never have thought to use a dmin lookup like that, but it works just right.
  15. J

    Code run speed on SharePoint linked list

    I have uploaded a copy of the DB, with only the pertinent tables and the query in question that I am using in the code. Basically I need how long each test status takes for each vehicle, and if the "teststatus" or "testPhase" is phase complete or vehicle release, respectively, the value should...
  16. J

    Code run speed on SharePoint linked list

    Attached is a picture of the table that stores the information that I am using the code to calculate values for. As you can see there are a number of vehicles that we do tests on as well as a number of statuses each vehicle test phase goes through. The query that is pulled for the code to work...
  17. J

    Code run speed on SharePoint linked list

    I have this code that runs on my SharePoint linked database that is used to calculate the length of certain tests. The issue is that the code takes a decent amount of time to run and whenever it runs there is a time in which the interface is unusable while the code runs. I have it set to run...
  18. J

    Pass values to form

    I use that function to open the specific products, however what I want to do is open the test data entry form to a new record and have the group and product code automatically filled in based on the product page i was on. And I tried the solution on that page it didn't seem to work, the data...
  19. J

    Pass values to form

    I have a database of experimental products. The database allows test technicians to input test information as well as product information (obviously in separate tables). Therefore before a tech logs test information, they have to first make sure the test product is in the database. They can...
  20. J

    Naming new archive table

    I have a Database in which I would like to archive data once it is now longer actively being used. I have VBA code that does everything i need it to, however I would like to name the new archive table related to the dates in the data being archived. Below is the code I am using to archive and...
Back
Top Bottom