Search results

  1. G

    Subtracting rows in access help please.

    Is year a text or number field?
  2. G

    Subtracting rows in access help please.

    @spikepl - Ok I'll start doing that. I know it was a lot easier for me to see the me answer, work forward or backwards through the process to replicate.
  3. G

    Subtracting rows in access help please.

    You need to upload a sample of the database and I could show you how it's done.
  4. G

    Report with Changing Field Names

    I would change your table to use fields like date1, date2, .... date7. Add seven more fields called date1 date, date 2 date.... date 7 date. Date1 date = 11/18/2013 from your example above. Hope that helps.
  5. G

    Calculating monthly tasks

    I've uploaded a sample, think it's what you are asking for. I always create a common field to easily link multiple queries together. In this case I created a field called "site" and created three queries. One with the averages by year and month by task for each employee, one for averages by...
  6. G

    Beginner Advice for a Family Database

    Since you are starting out, I'd just create 5 queries, one for each child field with the DOB. It would be a lot faster than recreating the database or moving the data (which you should do once you fully understand databases). I can upload a sample of a solution if you need it.
  7. G

    Search in Query

    I just posted a response and a solution for the two example. I just realized you'll need to adjust the iif statements for each new country. I guess you could create a cross reference table for all the countries, that way if a new country is added, just enter it in the new table for it to work.
  8. G

    Search in Query

    Here's a solution with one query using various functions, Replace, InSt, Left Right, Mid. These are all great things to know for working with data like this. Picture of results and database uploaded.
  9. G

    Format issue.?

    Not sure how it happened in your case. I've had it happened over the years, just need to recognize an be able to fix. I usually send it back to my IT Dba guy and ask if their is something wrong with the view they are giving me and point out the space.
  10. G

    Monthly and Yearly Totals

    can you upload a database with a sample of the data, I can show you the solution.
  11. G

    Daily Query report

    Change one of your query criteria to this: >IIf(Weekday(Date())=1,Date()-3,Date()-1) I uploaded a sample.
  12. G

    Format issue.?

    Yes, the space is the problem. I uploaded a solution. I use the trim and mid functions. The matches are in this query: QryOffOfTrimmedTable
  13. G

    Available prices

    If Wayne Ryan's post doesn't help, I can upload a sample.
  14. G

    How to replace some values from another Query

    You just need a good teacher/class. Until you start to see examples and work through things on your own, these can be confusing. I always like to work backwards from a finished database. I hardly ever use VBA and SQL in Access. Here is a sample database. It should open directly to the...
  15. G

    Insert Into subtable for each record in main table

    Here's a sample database to get you started. Let me know if you have any questions. If the form frmLabels doesn't open automatically, start there to see how the database is working.
  16. G

    Querying an exact set of values?

    No hard feelings, but I disagree with the "hard (or impossible)" comment.
  17. G

    Querying an exact set of values?

    You should be able to follow my queries if you have them in name order. Start at the first one and understand what it's doing, then move to the next. I added one more spare machine to the data, it has 5 parts with three matching a machine that needs the parts. I changed...
  18. G

    Multiple Prices per product

    David r, saves you from checking null but you'll have a customer for each order. Each customer should have an id number. Not sure how that would work.
  19. G

    Multiple Prices per product

    Exactly right. Leave it blank and it becomes the generic customer price. Follow the queries in alpha name order one by one and understand how it works.
  20. G

    Insert Into subtable for each record in main table

    I mostly use the design view when building queries instead of SQL. I'll try to upload a sample.
Back
Top Bottom