Question : SSRS Filter Today + 7

I have a quick question on a filter .. I am trying to filter on today  plus the next 7 days.. not sure how to right it .. on the expected date
Code Snippet:
1:
2:
3:
4:
5:
SELECT     POPOLine.ExpectedDate, POPOLine.Status, APVoucher.Vendor, APVendor.Name
FROM         APVoucher INNER JOIN
                      APVendor ON APVoucher.Vendor = APVendor.Vendor INNER JOIN
                      POPOLine ON APVoucher.PONumber = POPOLine.PONumber
WHERE     (POPOLine.Status = 'open') AND (APVendor.Name LIKE 'saint%')
Open in New Window Select All

Answer : SSRS Filter Today + 7

SORRY, quick copy paste and for got to change it:

-- the lazy, quick way
POPOLine.ExpectedDate <= GETDATE() + 7
-- or using the formal function call
POPOLine.ExpectedDate <= (DateAdd('d',getdate(),7)
Random Solutions  
 
programming4us programming4us