I am creating SSRS reports using SharePoint list in BIDS. I have two fields viz. Name, Time&Date, both are string parameters. I am able to get SSRS report however I want to let user to get reports using filter on Time&Date parameter. User should be able to select start and end date to get the results. Do I need to edit Caml query for this or this can be achieved using UI? Please suggest.
Updated-------------------
I have used below Caml Query
<RSSharePointList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ListName>Test_FAMM</ListName>
<ViewFields>
<FieldRef Name="Document_x0020_Name" />
<FieldRef Name="Time_x0020_of_x0020_Upload_x005c" />
</ViewFields>
<Query><Where><And><Gt><FieldRef Name="Time_x0020_of_x0020_Upload_x005c"/><Value Type="Text" IncludeTimeValue="FALSE">
'+'@StartDate'+'</Value></Gt><Lt><FieldRef Name="Time_x0020_of_x0020_Upload_x005c"/><Value Type="Text" IncludeTimeValue="FALSE">'+'@EndDate'+'</Value></Lt></And></Where></Query>
</RSSharePointList>
However, the query doesn't fetch me any data. Also, Time_x0020_of_x0020_Upload_x005c is of text type....