Search results

  1. K

    Large paper sizes

    Workaround: design a smaller (say half-sized) report, and scale it to 200% at the printer driver before you output or preselect your paper size, and select 'scaled to fit' on your printer settings.
  2. K

    Can queries edit tables positionally?

    ditto what Doc_Man said. Assuming (rather than FORCING) a sequence or order to be in a table can lead to DISASTER. In excel, add another column with a simple formula like (assuming your range starts at A1): D3: +iif(A3<>"",A3,A2) (and copy down as needed in D) and use column D rather...
  3. K

    Table structure - not duplicating records

    First of all, you shouldn't add text into your posts once another has posted to the thread, as your revisions are usually overlooked. It's better to post again with followup questions such as this. To answer your concern, you would simply add a new record in your link table for each instance...
  4. K

    displaying only one field in report - but unique situation

    It sounds to me that you have an access db with no proper structure at all. If it were me, I would redesign the thing, complete with normalization. It might sound like a lot of work, but I can almost guarantee that the effort will pay for itself many times over in future effort savings.
  5. K

    doing exam on microsoft access...

    You ARE aware that, eventually, you are going to want to APPLY your accumulated knowledge on something that 'isn't on a test' ! Learning about a topic is NEVER a waste of time.
  6. K

    Adding A User In a Password Protected Database

    Your db is likely split into a front end / back end (FE/BE) structure. Each user has their own FE containing the forms, queries, reports, etc (probably on their individual PC hard drives) while the single copy of the BE containing all of the tables (and therefore the actual data) is on a...
  7. K

    what relationship to use

    Let's break your problem down a bit. You are hinting that you need to keep track of inventory, or at least a pseudo-inventory, in order to properly track and connect orders, demands, fills, etc. So the first thing that I would do is search these forums for inventory control threads, as there...
  8. K

    Changing color in IIf statement?

    As long as you only need four or fewer different colors, you can use 'conditional formatting' (CF) on all Access versions after 2000. Just write expressions for each of your cases, with the default color being one of your choices. So, you format the text in the control to be green in the usual...
  9. K

    Relationships Question

    Rule of thumb: If a piece of information about a store is unique, like an address, it belongs in the 'store definition table' (your [strgenrl]). If a piece of information may occur more than once, it needs to be in a separate table, with a unique identifier, and use a foreign key to link it...
  10. K

    What's your best/worst joke?

    Charlie picks up a woman in a bar. They get in his car, and they're going down a dirt road to Lover's Lane, when he gets a flat tire. He looks in the trunk, and his spare is flat, too. He figures, what the hell, he's gonna get a little bit. So they get in the back seat, and he's just getting off...
  11. K

    Geneology like Relationship Structure

    There's nothing wrong with what you are doing, but... It looks like you are using the '+' (subdata) available in table view. Yes, this happens to show you one direction of your many-to-many relationship between child and parent when viewing table A, but Access merely picks the 'most likely'...
  12. K

    Insert PDF Document Object

    I have been wanting to do that precise thing for more than a year now, but i have yet to discover a way to do it! I too have assorted existing pdf files that I want to include in reports. I don't want to store the contents of the pdf file in Access, and I don't want to have to convert the pdf...
  13. K

    How best to attack this problem?

    Is there more than one client from whom they receive such a list? Assuming no... Optional: Assuming there COULD be more than two types of transactions, beyond 'cash' and 'credit', make a lookup table called [TransactionTypes] that contains an ID field and a value field. Initially, it will...
  14. K

    Database Design question

    If it were me, I would build a new table (say [tblQuestionResponses]) and establish a one-to-many relationship with your table presently containing the survey Question reponses. This new table will contain the responses (if any), beyond the yes/no choice, so you are not carrying a lot of empty...
  15. K

    Show records NOT in related table

    Have you looked at the 'Find Unmatched Records' Query Wizard?
  16. K

    Need help in making a query to sort out information

    Whenever I am trying to INCLUDE complex groupings of records with diverse criteria, I often flip the problem around to look at it from an EXCLUDE standpoint. If you can create a query with all of the records you DO NOT want, then you can have a second query use this and the "NOT IN" statement...
  17. K

    showing a pdf file in a report

    To increase visibility, I have reposted this question to the general forum: http://www.access-programmers.co.uk/forums/showthread.php?t=75848 Please respond there. I apologize to those who detest multiple-posting, but I decided my question belonged over there.
  18. K

    showing the contents of a pdf file in a report or form

    I would like to show a pre-existing .pdf graphical file on a report (and a corresponding form, if that is possible). Ideally, I would like to associate such files to an appropriate field of each record in a table, and have the CONTENTS of the pdf file show up as part of a printed report, as an...
  19. K

    showing a pdf file in a report

    I would like to show a pre-existing .pdf graphical file on a report (and a corresponding form, if that is possible). Ideally, I would like to associate such files to an appropriate field of each record in a table, and have the CONTENTS of the pdf file show up as part of a printed report, as an...
  20. K

    Chart Of Accounts?

    I am usually guilty of thinking that ANYTHING can be done using Access, but... Weren't speadsheets like 1-2-3 and Excel actually invented to help accounting-types with their chart-of-accounts, ledgers, etc. I thought the use of spreadsheets by the 'beancounters' was the first 'killer-app' that...
Back
Top Bottom