Recent content by bbeeching

  1. B

    Group by Day

    Thanks! I'll give both a try. If I run into any questions, as Arnold once said... "I'll be back"!
  2. B

    Group by Day

    I have an application that tracks employee "absent from work" occurances. I would like to count and sum the number of instances and on which day of the week they occur. In other words, who many times was Johnny absent on a Monday, Tuesday, etc, etc. If I group by the date field, and format for...
  3. B

    Append or Update?

    Thanks Pat! I'll give it a go with the test data first, then go for it! B
  4. B

    Append or Update?

    thats the rub .... there is no item number to relate it to... all I have to match it with is the description field.... I guess what I'm asking is how do I get the query to find the matching description in the main table and fill in the item number from the other table? Thanks! B
  5. B

    Append or Update?

    Please bear with me. I have existing information in a table that includes an auto number, description, and item number (among others) I need to update this table with item numbers generated outside the db. How do I loop through the recordset so that the correct item number is added to the...
  6. B

    24hr clock problem

    I forgot to say that I use the function from a query... ElapsedTime: fElapsedTime([StopTime]-[StartTime]) Cheers!
  7. B

    24hr clock problem

    I had the same problem not too long ago. I posted a simular question on the UtterAccess Forum and recieved this reply from R. Hicks, (quote) "When using the DateDiff() function to calculate "elapsed" time between two time values and the ending time value spans past midnight ...... You will...
  8. B

    Split db Generates Errors

    What I'm doing is updating one record in tblFuelType with the result of a calculated control on the form the routine runs on. This keeps the inventory of available fuel current with the amount of fuel expended. This is how it looks in the design master (db not split) Private Sub...
  9. B

    Split db Generates Errors

    I have been trying to solve a problem in a db I split. In my efforts I found in the Knowledge Base article 210266, "How to use the Seek Method on Linked Tables". In trying to get it to work, I generate runtime error #3265, Item not found in this collection Could someone please look at this...
  10. B

    Update Table from Report

    Thank You Sir. I will give it a go.
  11. B

    Update Table from Report

    have an Address application I'm building that I need some VBA assistance with. I have a table tblAddress and a tblCorrespondence. I would like to Update tblCorrespondence when a label report is printed. The label report can be sorted by several parameters. In tblCorrespondence I'm using check...
  12. B

    Extracting Data

    Does anyone know how to extract parts of data in one field, then move that extracted data to an unpopulated field? I have approx. 1500 records in an Excel spreadsheet that I am importing to a database. The records consist of a list of Names and Addresses. The Address cells have the City, State...
  13. B

    adding records using the not-in-list event

    This is what I use, and it works great. Private Sub cboCriteria_NotInList(NewData As String, Response As Integer) On Error GoTo err_cboCriteria_NotInList Dim ctl As Control Dim strSQL As String ' Return Control object that points to combo box. Set ctl = Me!cboCriteria...
  14. B

    Background or font colors in forms (Access 97)

    You should add an Else statement to set the colors back to a default color. If (Eval("[Forms]![frmSomething]![txtSomething] < something")) Then txtSomething.ForeColor = 255 Else txtSomething.ForeColor = 0 End If I haven't tested this in "Continous Forms" but it should work...
  15. B

    Checkbox Problem

    Try this If (Eval("[Forms]![frmYourFormName]![YourCheckboxName] = No")) Then OtherControlName.Enabled = False ElseIf (Eval("[Forms]![frmYourFormName]![YourCheckboxName] = Yes")) Then OtherControlName.Enabled = True End If Hope this helps!
Back
Top Bottom