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 strongm 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. jendendav

    Records Repeatly Missing from table, but did not delete them

    Before you use the extension number for the primary key ask yourself if anyone ever changes from one extension to another, as in when someone moves to a new office.
  2. jendendav

    RecordSet Not Updatable - Why?

    Like Quehay, I think Larry was on the right track the first time. I had a database with a similar problem and it was because I either based a query on a query or was using something like a one to many.
  3. jendendav

    MS Access - Combobox

    If you don't mind my asking, why would anyone scroll through 65,000 records looking for one specific entry? If I had to scroll through that much just to find one entry I'm afraid I would revolt and refuse to use the database but surely I'm just not grasping the application. Thank you for the...
  4. jendendav

    Learning code for Access 97

    Thanks. Sorry for the late reply. Was on a business trip. Jen
  5. jendendav

    Updating two tables with one form

    Well shoot, fire. Now that I have, with your help, successfully done this what you are saying makes so much sense. I knew SQL refered to query but never used SQL view because I didn't know what to do with it. I hadn't built the update query because I didn't think it would update both tables...
  6. jendendav

    Updating two tables with one form

    Way cool. If you check on this again I want to check my understanding of what happened here. Does setting DoCmd.SetWarnings False tell tstPdt that the value for SOH is no longer true? Then after update DoCmd.SetWarnings True tells tstPdt that the new value is true? Udate tells it which table...
  7. jendendav

    Updating two tables with one form

    Have been following several threads on this subject. Lack of coding experience is hampering me. I have: Table tstPdt ProductID ProductDescription ReorderLevel LeadTime SOH (stock on hand) Table tstInvTra TransactionID...
  8. jendendav

    Getting Weekly Totals in a Query

    I'm not really qualified to help but it seems many of our advisors are busy or on vacation. If you already have a monthly query, why can't you just modify it to return a week's worth of data. Or maybe the quarterly would be more helpful if it has calculations. Use the same logic as what already...
  9. jendendav

    Additional help to last weeks post re updating tables

    Is it possible to take the number of units entered into a data entry form based on one table and in events write code to update the stock on hand field of another table? Would the event be "after update" and how complicated is the code? The table the form is based on is strictly to...
  10. jendendav

    Learning code for Access 97

    Am using Access 97. Have special Edition Using Access 97 with a section on advanced VBA progamming topics. It went right over my head. I need to start much further back. Where is a good place to start? I need to do more than is possible with wizards and such. Thanks.
  11. jendendav

    Can I update another table using events?

    Thanks imlost2. Now some questions. Using your language strsql is the update query, yes? Is unitsform based on the update query? Because mine is based on the transactions table. This meant that it had fields from the transactions table only. But the code you sent me looks as though it...
  12. jendendav

    Can I update another table using events?

    Is it possible to take the number of units entered into a data entry form based on one table and in events write code to update the stock on hand field of another table? Would the event be "after update" and how complicated is the code? The table the form is based on is strictly to...
  13. jendendav

    Inventory transactions????????

    Thanks Bill. This makes more sense to me and should make my forms much simpler.
  14. jendendav

    Total

    Expressions are not my strong point. I'm hoping someone else will jump on this or that you have figured this out by now. Good luck. jen
  15. jendendav

    Inventory transactions????????

    I'm printing a copy of this so I mull it over. Thank you for confirming my problem with my form. Clarity issues. You use the term unbound form. I went to my books to look up unbound forms. Did you mean unbound controls in forms? On hand qty is data that changes. That was why I questioned...
  16. jendendav

    Inventory transactions????????

    Forgive me for borrowing this thread for talking to Bill. I have been reading your posting for a couple of weeks and have some questions regarding inventory programs. I built a rather simplistic idea to start with. All of my transactions (adding or subtracting) went into the same table with...
  17. jendendav

    Need some help with parameter queries and comboboxes..

    I had the same question about combo boxes for parameter queries. Look up thread #10965. Several people answered with a variety of help. Larry got me the farthest and helped me solve the problem.
  18. jendendav

    Concontenate (should be easy)?

    Did you try looking at the combo box properties in design view? That will tell what the box name is. Or have you figured all of this out from Robert's help.
  19. jendendav

    Concontenate (should be easy)?

    Also a newbie. However, I believe what Bill is saying is your solution. Instead of [Asbestos type] reference the combo box and as he also points out, multiple columns can be specifically identified.
  20. jendendav

    Total

    A field called Total would imply that you were running a calculation on numbers in the same row. When I read your question I assumed that is not really what you want. Are you saying you want to add all of the figures in the column marked Rate together? If so your calculation will have to be on a...

Part and Inventory Search

Back
Top