Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. shelspa

    Message box

    Got it. Cancel should = False Thanks.
  2. shelspa

    Message box

    I had it in after update. However, when I put it in before update it will not let the user move on to the next field and leave the out of spec data in that field. It acts just like using a validation rule and validation text.
  3. shelspa

    Message box

    I think that is close but I get a variable not defined for the word cancel.
  4. shelspa

    Message box

    So in an event procedure I have: If Me!Site_1_Index > 1.965 and < 2.015 Then What?
  5. shelspa

    Message box

    When my users enter a number that is out of spec, I want a message to appear saying "Out Of Spec". This will prevent them from moving on until they click OK. They need to notice that they are out of spec. The validation rule feature doesn't allow them to move on unless the data meets a...
  6. shelspa

    function applied to multiple fields

    Thanks, this puts me well on my way.
  7. shelspa

    function applied to multiple fields

    So I used the following to establish a union query but I must have something wrong: SELECT ID, Site_1_postThickness as Num FROM qryTPolyLotReport UNION ALL SELECT ID, Site_2_postThickness FROM qryTPolyLotReport UNION ALL SELECT ID, Site_3_postThickness FROM qryTPolyLotReport UNION ALL SELECT...
  8. shelspa

    function applied to multiple fields

    Not form, "report" sorry.
  9. shelspa

    function applied to multiple fields

    My form is based on a query that returns about twenty records. It has 5 numeric fields upon which I want to use StDevP. This of course applies to all five fields in all records to give the standard deviation of all values. In thread702-475136 I was able to use a temp table to do this for a...
  10. shelspa

    Open form in Datasheet view

    This can all be done by running a macro that opens the form in datasheet view from the switchboard verses opening the form from the switchboard.
  11. shelspa

    append qry - insert record

    I have two tables: tblFormulations and tblWP The records in the first are unique to the field: FormulationsLot. The records in the second are unique to WPLot. These two fields have identicle values. When a new record is generated in tblFormulations, I want a new record to be appended to tblWP...
  12. shelspa

    Default field to previous value

    Create a query that shows only the last record. In the default value of the control on the form you can do: =DLast("fieldname","qryMost_Recent_Record")
  13. shelspa

    charting - x axis labels problem

    Unfortunately the data table only shows microsoft's sample data. I found that in my concatenate statement, if I change the "/" to "\" between the months and years it works. Why in this chart and not other identical charts do I have to do this I have no idea. Every control, parameter, variable...
  14. shelspa

    charting - x axis labels problem

    I have a stacked column chart that plots monthly sums by two concatenated date fields using datepart. Example: Jan 04, Feb 04, Mar 04 etc. It works great. When I do a calculation on each data field to change the data to a percentage, the x axis date labels get jacked. The first shows normal...
  15. shelspa

    Null values convert to zero

    Records are not included in my query when this field is null. Therefore I really need to assign them to 0 so I don't lose information. The tables are linked by a lot number field, first to second and second to third. The first and third do not contain the same lot number. I'm not sure about...
  16. shelspa

    Null values convert to zero

    I know this has been covered but I'm not getting it. I have a select query of three tables. On one numeric field I want the nulls to be zero. This field name is present in all three tables. I want the query to return values (and zeros for nulls) from this field only from the third table...
  17. shelspa

    time calculations

    I want to convert a short time field into straight number of minutes to do some calculations. Example make 1:10 equal 70 (minutes). I have searched to no avail and I realize this could be a can of worms. Ideas?
  18. shelspa

    chart fields limited to 6

    How can I avoid the six field limit on a chart and have 12?
  19. shelspa

    on exit event - setting a variable

    Here is my entire code. The DEvicePartNumberID field is numeric and has 1 bound column. The result is the same with or without quotes. Private Sub DeviceYield_Exit(Cancel As Integer) Select Case Me!DevicePartNumberID Case &quot;83034&quot;, &quot;83101&quot;, &quot;83097&quot...

Part and Inventory Search

Back
Top