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

  1. oneleaf5

    Northwind 2010 Client database data macros

    Okay, I figured it out. The "UpdateInventory_Received" data macro is triggered by an "After Update" Event macro on table PurchaseOrderDetails. From the table design view, I clicked on the "Create Data Macros" menu option on the Ribbon > then clicked on the "After Update" menu item. This...
  2. oneleaf5

    Northwind 2010 Client database data macros

    Hello friends, I've been acquainting myself with the new features of Access 2010 by picking apart the Northwind 2010 example database. I'm trying to figure out how the inventory levels in the Inventory table are updated. I've located the data macro named "UpdateInventory_Received" that calls...
  3. oneleaf5

    calculate change in totals based on Date and PreviousDate

    Hi Folks, I'm getting an "overflow" message when running this function. Does anyone know what I'm doing wrong? I'm a bit of a newbie so don't laugh at my code/logic. The user enters a date in a parameter query which gets passed to the function. The function is supposed to find the next...
  4. oneleaf5

    using ROWNUM to update distinct streets

    carp -- Your solution worked perfectly. Thanks very much. Thanks, too, for the side note. Right now, I don't care about which lat/lon pair gets chosen for the street, just as long as the street gets represented. cheers, oneleaf
  5. oneleaf5

    using ROWNUM to update distinct streets

    Hi Everyone, I'm trying to flag only the first record for a street that has a positive latitude value: update savoy set flag = 'Y' where street = (select distinct street from savoy where lat <> 0 and rownum = 1); The result I would like is this: STREET LAT LON FLAG miller st 0.000000...
  6. oneleaf5

    DLookup on Memo field

    Remou, It worked -- again you have come to my rescue. Many thanks, oneleaf
  7. oneleaf5

    DLookup on Memo field

    Can a DLookup be run on a Memo field in a report? I am trying to get a Memo field to appear on the Report Header of my report. The code I'm executing is this: =DLookUp("WhatsNew","tblFiscalYear","FY=" & [FY]) Any suggestions? thanks as always, oneleaf
  8. oneleaf5

    Delete Record From A List Box

    Remou, Wow, it worked. Thanks so much! oneleaf
  9. oneleaf5

    Delete Record From A List Box

    I'm trying to delete a record from a List Box. When I run the code below, I get this error: "undefined function '[Forms]![frmFiscalYear]![lstMembers].Column' in expression" tblFYMembers, where the List Box items are stored, get its values from the FY field on the Form, and the ID field in...
  10. oneleaf5

    SUM not working in report header

    Okay -- I got it. Instead of =Sum([txt1]), what I needed to do was =Abs(1*([txt1])) =Abs(2*([txt2])) =Abs(3*([txt3])) =Abs(4*([txt4])) =Abs(5*([txt5])) Everything runs fine, and the average rating for each workshop is correct. onelarf
  11. oneleaf5

    SUM not working in report header

    I have a report for work that lists the survey responses for each of our Conference workshops. Information about each workshop is displayed in the Report Header. Also in the Report Header are the total ratings the workshop received, ranging from 1 to 5. These totals are acquired from...

Part and Inventory Search

Back
Top