Ok....let me first say thanks to all who tried to help. I really appreciate any effort...because without your help I'd have many unfinished projects. On to this problem. Ok here is what I did. Since I was doing the next page and previous page things thru hyperlinks. I wasn't able to add the:
ActiveSheet.Range("A" & Range("A65536"

.End(xlUp).Row + 1).Select
code to it. So I tried putting it under the worksheet.followhyperlink method and what it did is took the correct position from the page the code is on and applied it to the next page not giving me the right affect. Well my frustration got to me and I decided to use a command button. I'm used to doing vba in Access. This is the first project I've done in excel. Anyway, I made a commandbutton and tried this code:
Private Sub PrevPage_Click()
Sheets(Sheet3).Select
ActiveSheet.Range("A" & Range("A65536"

.End(xlUp).Row + 1).Select
End Sub
Well it didn't work either. I get the error. Type mismatch. In Access, I can usually figure out the problem with that error. I'm usually putting a value on a label or caption on a textbox or something backassward like that. Anyway, I can't figure out the mismatch here. So can anyone figure this one out. I'm sure it's a simple one...so I'll just wait on an answer. But if I can't get this program to work the way I want I'll just make a darn .mdb. I like Access better anyway. I was just trying to fix the current spreadsheet the office was using. Thanks in advance,
Snayjay