Originally posted by NeoPa
					
				
				
			
		I have not had a chance to try your suggestion. have to figure out how to impliment it. The number of reports may vary.. which is why I use the recordcount. some clients may only have 2 reports and some may have 8...
i used the code provided above my not working properly post. i do not have any msgboxs in my current code.. once I saw I was getting the values, I took them out.
it is this section that isn't working properly
Code:
	
  For intCounter = 1 To UBound(rptTitle, 2)
      With rstContents
        .AddNew
          ![Title] = rptTitle(0, intCounter)
          ![Page] = Rcount![Total_Count]
        .Update
      End With
    Next
Comment