Yes, we tried the standard method for an access data project, putting parameters in the report properties, but it didn't like it and wouldn't do what we wanted, so this was the solution we got to work. This is my whole procedure. I didn't mention earlier that it also has input parameters. Thanks!
CREATE PROCEDURE dbo.proc_MM_Profile_Specialist
@StudentNumber varchar(500),
@Country varchar (2)
AS
set nocount on
declare @SQL as varchar (2000)
set @SQL = '
SELECT Stuff(Stuff(tblLDPStudentInfo.LDPStudentID, 6, 0, ''-''), 3, 0, ''-''), dbo.tblLDPStudentInfo.LDPStudentID,dbo.tblLDPStudentInfo.FullTime, dbo.tblLDPCompassStudentData.BirthDate,
dbo.tblLDPCompassStudentData.StudentName,dbo.tblLDPStudentInfo.Thesis, dbo.tblLDPStudentInfo.CourseOfStudy, dbo.tblLDPStudentInfo.EnrolledDate, dbo.tblLDPUniversity.UnivName,
dbo.tblLDPUniversityLocation.City, dbo.tblLDPStudentInfo.ProgramDuration,dbo.tblRegions.RegionID, dbo.tblRegions.RegionDescription, dbo.vw_RS_LatestWhereLiving.Location, dbo.vw_RS_LatestWhereLiving.IfOtherExplain,
dbo.tblLDPStudentInfo.Apprenticeship, dbo.tblLDPStudentInfo.License, dbo.tblLDPStudentInfo.DescribeCourse, dbo.tblLDPStudentInfo.SpecialAchievements, dbo.tblLDPStudentInfo.ReasonsSelected
FROM dbo.tblLDPStudentInfo INNER JOIN
dbo.tblLDPCompassStudentData ON dbo.tblLDPStudentInfo.LDPStudentID = dbo.tblLDPCompassStudentData.LDPStudentID INNER JOIN
dbo.tblRegions ON dbo.tblLDPStudentInfo.RegionID = dbo.tblRegions.RegionID INNER JOIN
dbo.tblCountry ON dbo.tblRegions.CountryID = dbo.tblCountry.CountryID INNER JOIN
dbo.vw_RS_LatestUnivTransferInfo ON dbo.tblLDPStudentInfo.LDPStudentID = dbo.vw_RS_LatestUnivTransferInfo.LDPStudentID INNER JOIN
dbo.tblLDPUniversityLocation ON dbo.vw_RS_LatestUnivTransferInfo.LDPSUnivLocID = dbo.tblLDPUniversityLocation.LDPSUnivLocID INNER JOIN
dbo.tblLDPUniversity ON dbo.tblLDPUniversityLocation.LDPSUnivID = dbo.tblLDPUniversity.LDPSUnivID INNER JOIN
dbo.vw_RS_LatestWhereLiving ON dbo.tblLDPStudentInfo.LDPStudentID = dbo.vw_RS_LatestWhereLiving.LDPStudentID
WHERE (right(dbo.tblLDPStudentInfo.LDPStudentID,4) in (' +@StudentNumber+ ')) and (dbo.tblCountry.CountryID in('''+@Country+'''))'
exec (@SQL)