Recent content by kicrewd

  1. K

    Can't change field name in table

    I am trying to change the name of a field in a table. When I hit save, it gives me the error: "Could not find field 'originalFieldName'" I hit OK and it says: "Errors were encountered during the save operation. Properties were not updated." There are no queries, forms, reports, or...
  2. K

    Round query values up to nearest table value

    Alright, I think I am understanding how to use a query better now. I thought I should put all the fields I want to use in my calculations in the query, but for the most part I shouldn't put fields used in calculations in the query. Query fields should be calculated from fields outside the query...
  3. K

    Round query values up to nearest table value

    I'm going to try moving to using Join's in SQL, but I haven't done anything in SQL yet, so first I want to try to get it to work with my options in Design View. I created a second query "MotorQ2" which receives the information calculated in the first query "MotorQ" and calculates one more...
  4. K

    Round query values up to nearest table value

    And I realize now that if I change to SQL view I have: SELECT MotorT.ID, MotorT.[Motor Name], MotorT.Voltage, MotorT.Phase, MotorT.[Nameplate Current], MotorT.CircuitLength, MotorT.Horsepower, MotorT.RacewayMaterial, DLookUp("[Current]","[NEC430_250IndT]","[NEC430_250IndT].[HP]=" &...
  5. K

    Round query values up to nearest table value

    In design view.
  6. K

    Round query values up to nearest table value

    I haven't been using SQL, that is what I put in the "Field:" box for the field I am making in the MotorQ query.
  7. K

    Round query values up to nearest table value

    Thanks, that look like it should work well. When I try to implement that, in the MotorQ query, I am using the code: Standard Breaker Size: DMin("[SC Rating]","[BreakerT]","[BreakerT].[SC Rating]>"& [MotorQ].[SC Rating]) but it keeps asking me to input the parameter value: MotorQ.SC Rating...
  8. K

    Round query values up to nearest table value

    Hi, I have a table of standard Circuit Breaker (CB) sizes. I then calculate a minimum CB size in a query field. I want to use that calculated minimum value to look up the next largest CB size from the table and fill a field in the query with it. Any suggestions? For now, I am going to add a...
  9. K

    Brand new to Access & Looking for advice

    Welcome! You should be able to find some good help.
  10. K

    looking up table values based on two inputs

    Thank you, I got Dlookup to work.
  11. K

    looking up table values based on two inputs

    I am creating a database to perform some engineering calculations based on user inputs and print various reports based on those calculations. My main problem is that I have tables from the National Electrical Code (NEC) that I need to pull values from. So for instance, the user will put data...
  12. K

    Converting Excel table for lookup of values based on row and column headers

    Galaxiom: Using three fields so that I can retrieve on the Age and Height fields and return a Weight makes a lot of sense theoretically. What do you mean by joining to the other data? Is there a way to do this with relationships so that when I fill in an age and height it automatically pulls...
  13. K

    Converting Excel table for lookup of values based on row and column headers

    I can put the three fields: age, height and weight in the query, but those represent a standard table of data which can be referenced. I have a form to input the age and height, the table is information that is built into the database. How do I get the specific weight from the table for a...
  14. K

    Converting Excel table for lookup of values based on row and column headers

    I am using the weight values one at a time to calculate other values in the query and output all of it to a report.
  15. K

    Converting Excel table for lookup of values based on row and column headers

    Back to my initial problem: I am creating a query which needs to pull a specific weight from the table based on the age and height. I am trying to do this with the dlookup function. Is there a simpler way to pull this value of weight? Galaxiom referenced doing this as if it was a built in...
Back
Top Bottom