The query runs great! I have another part of the page where I can refresh and the data will show up... I've built apps in access so this isn't to far from what I've done there. I just can't get the data to refresh!!!! Do I have to send it to another page to refresh or what?? Here is the query to give you and Idea...
SELECT TblArchive.EmployeeId, TblEmployee.EmployeeFname, TblEmployee.EmployeeLname, format(TblArchive.ArchiveDate,'mm/dd/yyyy'), Tblabsreason.absreasonName, TblArchive.ArchiveAmount * -1 as expr1
FROM (TblEmployee INNER JOIN TblArchive ON TblEmployee.EmployeeId = TblArchive.EmployeeId) INNER JOIN Tblabsreason ON TblArchive.absreasonId = Tblabsreason.absreasonId
WHERE (((TblArchive.EmployeeId)=$em) AND ((TblArchive.absreasonId)<>11) AND ((TblArchive.ArchiveComitted)=No));