Hi Hope the follwing may help you. query.Query = "<OrderBy><FieldRef Name=\"Modified\" Ascending=\"FALSE\" /></OrderBy><Where><Gt><FieldRef Name=\"Modified\" /><Value Type=\"DateTime\"><Today OffsetDays=\"-14\" /></Value></Gt></Where>"; This is the SPQuery which gets the modified documents which are 14 days from today. SPView SPCustomView = docList.Views.Add("New/Updated Documents", viewFields, query.Query, 20, true, false); By adding this query to the required view we can get the documents which are mdified between today to 15days. And the answer for your question is in the above SPview 20 represents page limit.So you can use your number to display the no of Documents per page. Thanks, Chandu.