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 SkipVought 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: *

  • Users: RichUK
  • Order by date
  1. RichUK

    Date syntax in SQL string

    WHERE Date = #" & Format(Forms!BookingForm!Date,"mm/dd/yyyy") & "#.... Also Date is a reserved word in Access, if that is a field name in your db then you should change it
  2. RichUK

    Sub report not showing if no results

    Look up the HasData method
  3. RichUK

    HOW CAN IO MAKE ACCESS PRINT THE WHOLE TEXT BOX

    save the record before opening the Report
  4. RichUK

    How to display a negative # as positive - Abs

    You have to put the expression into the grid Expr1:Abs([MyField]) or as the control source for a text box on your report.
  5. RichUK

    Simple filter-by-date question

    Look up the IsDate function
  6. RichUK

    Extract month number from date field

    DateByMonth: Format$([TableNme].[DateField],"m yy")
  7. RichUK

    Form Loading a huge table

    Do the calculations on the form
  8. RichUK

    YesNo fields are 0 and -1

    Change the format on the property sheet to Yes/No
  9. RichUK

    Printing a Query

    Use a report with the query as its record source.
  10. RichUK

    trying to sum a total between 2 dates...

    Since the subform already has the records concerned you only need to Sum the relevant sales in the subform footer. ie.=Sum([Sales])
  11. RichUK

    Is Failure of JET SQL/Access Possible?

    Have you compiled and saved all modules, compacted the db. Failing that try importing everything into a blank new db.
  12. RichUK

    Passing date criteria from text boxes on form into query

    What is [Text] try Between ([Forms]![fAG_Articles]![txtStartDate]) _ And ([Forms]![fAG_Articles]![txtEndDate])))if you are trying to define the field as text then you have to define the parameters, which should be Date/Time
  13. RichUK

    Creating a column of consecutive numbers

    Why not just use an Autonumber?
  14. RichUK

    Need Event When the Page Number Changes

    Quintios Look up the HasContinued/WillContinue functions
  15. RichUK

    Stop data entry on subform if control on form is Null

    Private Sub Collections_subform_Enter() If IsNull(Me.CustomerID) Then Beep MsgBox "There are no Customer details entered yet, please correct this" txtSurname.SetFocus End If End Sub
  16. RichUK

    How to enter fluctuating values in a calculated control?

    Store the exchange rate at the time of the purchase
  17. RichUK

    Simple check box counting in a report

    Sum(Iif([option1]=True,1,0))
  18. RichUK

    someone try this with the date format

    Why not just set the date field to short date, the only time UK dates cannot be used in queries is when using strSQL ,filters etc.
  19. RichUK

    "Default" value on a report

    Look up the HasData method.
  20. RichUK

    Cummulative Totals

    Article ID: Q121509

Part and Inventory Search

Back
Top