Search results

  1. R

    Counting yes/no occurances

    Many thanks. So where would you put this code and when would it be executed? Would it be a calculated field within the table or an expression within a query? I defined a count field in the table and created a form to capture the data. On each click on the yes/no box i either added or...
  2. R

    Counting yes/no occurances

    I have 11 yes/no fields in a record, with about 600 records in the table. I have a form with all 11 fields on a single line for each record, togther with a numeric field on the form that has to hold the count of yes/no fields set to a yes status. This is also recorded on each record. I have no...
  3. R

    Implementing filter by VBA

    I have a report that I wish to email a different page to individual recipients, whose email address is contained with the report. I firstly placed an 'email' button on the report, and using a DoCmd VBA function managed to email the whole report to each person. I then used the filter menu...
  4. R

    Avery C2160 label printing problem

    I have a need to print a set of names and addresses on Avery L2160 (3 across, 7 down) labels using Access 2010. These are currently printed using mail merge via Word, which has Avery C2160 as a predefined template. Access does not. I contacted Avery and was given the exact dimensions of the...
  5. R

    Append Records problem

    I think my last reply got lost in the ether since it hasn't come up on this thread. An example of the calculation I do is for alpha grouping: (IIf(Left([SurName],1)<"E","A - D",IIf(Left([SurName],1)<"L","E - K",IIf(Left([SurName],1)<"S","L - R","S - Z")))) I am convinced it is...
  6. R

    Append Records problem

    The storing of calculated fields is to ease the repetition of calculating these very time they are needed. It's mainly string manipulation to extract certain data. These reason for copy databases is that two members of the organisation need to add new members for a limited period of time. No...
  7. R

    Append Records problem

    I have designed a database (ACCESS 2010) running on a standalone computer. It is not hosted on a network and is not written for multiple users. However, for a short period each year two users need to update the same table. I hoped to achieve this by duplicating the database after tagging all of...
  8. R

    eMailing report pages

    There have been many postings regarding this subject, but being relatively new to Access 2010 and not being familiar with Visual Basic (I came from the COBOL/Fortran era!) I have not been able to follow the approaches used. I have a database that contains lists of members belonging to an...
  9. R

    Report layout

    When I make a table from your 3rd query I expected to get a similar layout, but instead of 624 entries I get 6240. I have now run out of ideas on how to create a table in the same form as the query output. My problem is that when I release my system for live running it will be used by people...
  10. R

    Report layout

    Dear plog I repeated my approach again this morning i.e. taking your 3rd query and linking the output to my members table, adding the two extra fields to make a fourth query. This produced the results I wanted in datasheet layout, taking about 1 minute. I then created a report based on the...
  11. R

    Report layout

    This what I did but the table created from the crosstab query ( your final query) I expected to resemble the output of the query I.e. One row per member, but it produced a table 10 times that size! I have been suffering from painful sciatica today and have been ordered off the PC by she who...
  12. R

    Report layout

    I am away from the PC now using an iPad. I created a new query using your last query and the Members table, linking on member number and extracting the member's full name and surname. The query runs, producing exactly what I want, sorted on surname. It's when I design a report using the new...
  13. R

    Report layout

    plog - wonder if you can throw some light on a problem. I tried to extend your work by adding two extra fields from the members table, FullName and SurName, the idea being to include the members name. sorted by surname. I couldn't get it to work! So I added a further query to the three you...
  14. R

    REmove background colour when outputting to PDF

    Not sure how I do this. Do you mean the form populated with data or in design mode?
  15. R

    Report layout

    Copied it over and worked first time! Absolutely brilliant. Very many thanks. Harold Reglar
  16. R

    Report layout

    Wow! That will take me some time to absorb and my youngest grandson arrives to spend a couple of days with us in an hour! So it may be some time before I get back to you if I have any queries. Many thanks.
  17. R

    Report layout

    Table 1 name : Members Relevant field is MemberNumber, numeric There are another 30 fields but none of the relevant to the problem. Table 2 name: Groups Relevant filed is GroupCode, Text field, 6 characters long e.g. His01, Sci061 etc. Table 3 name: GroupMembers Relevant...
  18. R

    REmove background colour when outputting to PDF

    I have a form with subform that uses colour as background colour for all fields on the form, and also a very light background for the whole form. This outputs very well to PDF, retaining all of the layout etc. However, consisting of over 100 pages I do not want any colour at all in the printed...
  19. R

    Report layout

    Sorry for the slow response but I have been away for a few days. The only database I now have has personal information in it so I can't really post it, but I can describe very easily the requirement. I have three tables: Members (of an organisation) - 600 approx Groups (within the...
  20. R

    Report layout

    Not sure that the title is correct but here goes...... As part of a bigger database, I have a table consisting of two main fields, a member ID and a interest code. A member will have, in practice, from 0 to 10 interest codes, although there are up to 100 interest codes in total. I need to...
Back
Top Bottom