Search results

  1. S

    End of file problem

    I wanted to add a button with an event procedure to an existing form that would skip to the next record unless the end of the file was encountered in which case it would jump to the first record. I envision the code would look something like this: If (test for end of file) = False Then...
  2. S

    Adding multiple repcords in related table

    Thanks for the suggestion, I'll look into it when I have time. I was able to write code that solved my original problem.
  3. S

    Adding multiple repcords in related table

    Attached is a sample database with demographic and grade tables as well as a form for managing the contents of the demographic table. I have the relationships set up and the delete function works as expected, however, when I add a new student I need tblMarksEntry1 to contain 4 new records with...
  4. S

    Adding multiple repcords in related table

    I have a table with student’s demographic information. I have another table with student’s grades. The two tables share the student’s ID Number field. The grade table has four records for each student, one for each grade period. In the application I will need to add and delete students and...
  5. S

    Need detail values to display in footer

    I am pleased to report successful resolutions to all issues encountered to date. Your help was the key and is greatly appreciated. Thank you.
  6. S

    Need detail values to display in footer

    Thanks for the suggestion, I'll give it a try. I think this may help me solve another problem I am having trying to load a function into the Control Source property of a text box on my report. I get an error message saying that you can not load the Control Source property during a print...
  7. S

    Need detail values to display in footer

    The array worked great until I changed the detail section's visible property to No. After that no values were displayed. I just checked the file you sent me and it does the same thing.
  8. S

    Need detail values to display in footer

    Success. I had to fugure out how to use multiple criteria (the link you suggested really helped) and discovered that both fields referenced in the criteria had to be present in the footer where the DLookUp function was being used. Thanks again, hopefully for the last time. I guess I must...
  9. S

    Need detail values to display in footer

    An additional problem has surfaced with my report. Although the fix suggested solved the original problem, in my application I need to have the detail and GP footer invisible. Is there a way to make this work with these conditions in place? See attached file.
  10. S

    Need detail values to display in footer

    The DLookup function didn't work with repeating sets of records but the array will do the job. This is my first foray into VAB within reports. I'm sure I'll use this technique many times in the future. Thank you.
  11. S

    Need detail values to display in footer

    I’m trying to capture values of repeating numeric and text fields in the report detail and display them in a footer. The attached database is a better explanation of what I’m trying to do.
  12. S

    Incremental values in report missing

    This seems to work. I can't figure out why but I'm not going to lose any more sleep over it. Thank you for the solution and the link.
  13. S

    Incremental values in report missing

    This is strange! Out of frustration I saved the database, created in Access 2007, in Access 2002 format and put it into a laptop I have running the 2002 version. The problem disappears and data displays as expected. The latest twist . . . . I put the database on yet another laptop running 2007...
  14. S

    Incremental values in report missing

    It happens to me after I save the database then close and reopen Access. The attached .jpg is what I see.
  15. S

    Incremental values in report missing

    vbaInet, Yes, this is what I'm looking for and I can tweak my layout and get it but once the database is saved then reopened the #ERROR? appears. Right now the table is what I'm using. It is original data pulled from a spreadsheet that will be supplied to me. I was testing layout options...
  16. S

    Incremental values in report missing

    I was preparing a scaled down version of my data to attach for your perusal and found to my surprise that it worked, that is until I saved it. Now I have a new problem. I get a #Name error in the GP footer. When the values did display the report works as I had intended it to. To recap, I want...
  17. S

    Incremental values in report missing

    I have a report with two groups identified, STDNO followed by GP. The value of GP in the table is either 1, 2, 3, or 4 and follows this sequence all the way through. I have a text box in the GP footer that captures the value of a field named NS in the detail section of the report based on the...
  18. S

    Multiple fields on one report line

    Thank you Rana. This is what I needed. Steve
  19. S

    Multiple fields on one report line

    I can't believe my problem is as difficult to solve as my web search efforts indicate. In a nutshell I have the following data: Record# Period Subject Grade 1 1 Math 90 2 2 Math 80 3 3 Math 85 4 4 Math 95 I want the report to show: Subject Period 1 Period 2 Period 3 Period 4 Math 90 80 85...
Back
Top Bottom