Search results

  1. L

    Form Record Update-HEELP.

    I am creating a log of edited records. So let's say I have two fields: NAME, AGE Say my present Record is NAME- Liv Manto AGE- 28 If a user say, User 8 change the record to: NAME - Olivia Gonzales AGE - 32 I will a add a record to a log table EDIT: User08;Name-Liv Manto:Olivia...
  2. L

    Null Values in Parameter Query

    Let [Forms]![frmFindPart]![Size] be X So your formula is like this: iif (isnull(X) or X =""), "* ", X) The second ) should be deleted.
  3. L

    Subform (HELP!)

    Ask HELP for this topics: Open or CLose Toolbox Create a subform and add it to an existing form [This message has been edited by Liv Manto (edited 09-28-2001).]
  4. L

    Record Match Query

    Since you have different recordcounts for Field 1, Field 3, does this mean you have two tables linked by Field 1? [This message has been edited by Liv Manto (edited 09-28-2001).]
  5. L

    Selecting a number of records only

    Ask the HELP for this topic: Display only the highest or lowest values in the query's results If your criteria is not one of list then go to the SQL view and change the value in there. If you are doing this through a code, you can set the SQL with a variable. [This message has been edited...
  6. L

    Saving results of a query

    Would it help if you have table appended to everytime you run the query?
  7. L

    A Recipe for Good Form Design

    I find Access Power Programming by F. Scott Barker useful for form designs.
  8. L

    Field Size and Data Type in Query

    You can create a table using vba code. You could set the field type, size etc.
  9. L

    Startup on forms

    put this on the On Open event property of your form: DoCmd.GoToRecord , , acNewRec docmd.Maximize
  10. L

    Trouble with Duplicates

    You could create a crosstab query - GROUP BY so you could grouped your field's data thereby supressing duplicates OR you could create a delete query. Sample of which I am sending you a copy now. [This message has been edited by Liv Manto (edited 09-17-2001).]
  11. L

    Right() String question

    Use instr() Ex: 1234567 ABCD_FG x= ABCD_FG Pretend the _ is space. Space is on the fifth of the term (x). Instr(x, "_") will give you 5. Add 1 to 5 and you got the beginning of the second word "FG" So now you can use MId(x, (instr(x,"_")+1)) Just replace "_" with " "
  12. L

    Position a msgbox

    I need to move my msgbox at the lower left hand corner of the screen. How do you set a msgbox's top and left position?
  13. L

    Update query w/IIf and DateAdd formulas

    Try True or -1 [table1]![checkbox field]=True
  14. L

    Aggregate Function?

    tblScaleData.Ticket, tblScaleData.PROD If ticket is actually field, you are using it as a table - tblScaleData.Ticket means Field "tblScaleData" is from table "Ticket"
  15. L

    Tricky Subform Problem

    Just thinking, I haven't done this myself. So if you have Mainform, Subform1, Subform2: Create Subform1 with a subform in it, Subform2. Then put that Subform1 on the Mainform. Try it with simple records.
  16. L

    WildCard not accepted

    all the records in Aug-01 Between 8/1/2001 and 8/31/2001 (if there is a 31)
  17. L

    Easy query problem

    Do they have something else in common, like from the same department, or all terminated employees or name starts with S ?
  18. L

    Printer Parameter Dates on Report

    Between #startdate# and #enddate#
  19. L

    REPORT SUMMARY

    Use the crosstab query. COntractor___ Open___Missing ___Closed GroupBy________Count__Count _____Count
  20. L

    making control visible if other is true

    How is your table set up? Can't you base your report on a query?
Back
Top Bottom