Search results

  1. V

    Dsum for the month, but not all years?

    Hey guys, Having a bit of an issue with this dsum. I used to have this code with a table that contained records for that year only. Now I am combining all years into one table. My dsum code on my form is returning a value for that month as normal but now it includes the month for every year...
  2. V

    Parameter Query in ADP?

    Thanks pbaldy. I think I will stick with adp.. ill have to find another method for this query I guess.
  3. V

    Parameter Query in ADP?

    Ah, I see. Thanks for the explanation. Would you recommend using accdb with linked tables instead? Will parameter queries such as [] function the same that way?
  4. V

    Parameter Query in ADP?

    I have been unable to find the answer to this question, nobody seems to know so perhaps its not possible? I switched my database over to adp format so it runs on sql, I had a parameter query that I would like to use on this new database. In regular Access, it's just [] in the criteria field to...
  5. V

    Question Looking for a solution

    as i said, its just a text field...
  6. V

    Question Looking for a solution

    wait, are you thinking im using the primary key id column as a customer field? where did you get that idea? as i said multiple times, this is a TEXT field, that holes business name. NOT an int field, which would not allow letters. I dont know where you came up with that idea.
  7. V

    Question Looking for a solution

    its just a field called [customer] with entries such as "mcdonalds" there is nothing wrong with that
  8. V

    Question Looking for a solution

    so your saying that a text field is restricted to numbers only? ya... ok there is absolutely no reason i cant put things like "target" or "mcdonalds".
  9. V

    Parameter query in sql?

    not sure where to start for that. you would think there is a simple solution just like normal access. doesnt get any easier than []... hopefully there is just a small bit of code im missing here.
  10. V

    Question Looking for a solution

    correct. its a business name always, never people.
  11. V

    Parameter query in sql?

    This designer does not graphically support the @Enter_Job_Number SQL construct. Id imagine it would be something like this though.. ill have to play around with it unless anyone knows?
  12. V

    Question Looking for a solution

    why not? its relevant info.. its not like we have the address in there.
  13. V

    Parameter query in sql?

    here is an example of one that works, you just want to see an example of one that functions properly? SELECT Quote, Customer, JobName, FollowUp, Date FROM dbo.Jobs WHERE (Quote LIKE 'M%') AND (Active = 0)
  14. V

    Question Looking for a solution

    Indeed, i feel the jobs table is appropriate. we have a quote number, job number, customer name, and some other small data for the office. Nothing too in depth.
  15. V

    Parameter query in sql?

    But access changes it every time. Then when I save it, it tells me there is no such field called Enter Your Name. Regardless of [] () '' "" stuff.
  16. V

    Question Looking for a solution

    I think I have come up with a solution, just have another table with ALL of the material data etc. I was just worried beacause it will have like 50 records per job... and in 5 years we may have 5000 jobs... is this ok?
  17. V

    Parameter query in sql?

    Yes it does. :)
  18. V

    Parameter query in sql?

    Your code does not work. You must be using an access database, because that it what my old code looked like. This is now an adp, running on sql. When I enter this style code, access changed it to sql rendering is useless.
  19. V

    Parameter query in sql?

    Its not.. that was just a mistake. The data is from table [Materials], query the field [Job]
  20. V

    Parameter query in sql?

    Well thats the point of the post.. sql doesnt recognize the regular [] to initiate a input box like we used to use. I cant find anything to make this work in sql...
Back
Top Bottom