Recent content by pony08

  1. P

    Combo Box

    I appreciate the redirection!
  2. P

    Combo Box

    I have a combo box in a form that is used to populate one of the columns in a table. How do I get the description to appear in the table instead of the primary key?
  3. P

    Report Page Header

    Thanks....That is a big help!
  4. P

    Report Page Header

    I have a report that I would like the Page Header to appear in the following page if the data that goes with it continues to another page. Are there any settings or code that can accomplish this?
  5. P

    Append Query - Only new Records

    There will be records in ProductInformation_Consumer table that are not the Attributes Table.
  6. P

    Append Query - Only new Records

    How can I modify the below code so that it only adds new records to AttributesTBL from ProductInformation-Consumer? Thx INSERT INTO AttributesTBL ( Material ) SELECT [ProductInformation-Consumer].Material FROM AttributesTBL INNER JOIN [ProductInformation-Consumer] ON AttributesTBL.Material...
  7. P

    Macros and Combo Box

    Excellent....Thanks!
  8. P

    Macros and Combo Box

    How do I modify the after update event?
  9. P

    Macros and Combo Box

    I would like to have a macro run when I click off of a combo box. The combo box has dates by Quarter and the macro refreshes a pivot table. The pivot table is filtered by the combo box quarter selection.
  10. P

    Query to Flag Database Changes

    thx...I will give that a try!
  11. P

    Query to Flag Database Changes

    We want to flag any specs that change with a date so field staff know they need to review the revised spec sheets. Sorry typo
  12. P

    Query to Flag Database Changes

    Yes...that is correct. It is involving specifications for SKU's. We want to flag and specs that change with a date so field staff know they need to review the revised spec sheets.
  13. P

    Query to Flag Database Changes

    I need to build a Query that will look at a previous table and a new table and flag any changes...what is the best way to go about something like this?
  14. P

    MAX Query

    Thanks....I will give it a test drive!
  15. P

    MAX Query

    I am looking for a query that will single out a SKU with the maximum number of sales. I have a table that shows a SKU's material code, sales and SKU number. What I need the query to do is find the MAX sales, (1831 in the below instance) and return only the line with 0CXX2005300CP. Material...
Back
Top Bottom