Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

I am try to manually; no wizard, populate a the ReportViewer control. I have been successful in doing so, by using a SQL Data Access utility class I've created. But I wanted to be able to filter result of the report as well, and as such, I explored passing in parameters and filtering based on the paramater passed in. This also works, but by placing a parameter on a field in report, if do not set; in others words leave it empty, the report itself is empty. I result are there but they are not being shown, because the filter is being applied on load; I can tell because I have other textboxes on the page that make use of the values of the report via some expressions I've written.

Is there a way to by default ignoring the filter, initially on load? I am not the best at using the ReportViewer but I am learning so please be patient with me if I ask some seemingly dumb questions. Also, is there a way to remove a filter once you no longer have use for it during runtime?
.
Posted
Comments
PrissySC 11-Jun-13 16:31pm    
I do not use the filters much at all. I leave selections for the user via dropdown and/or radio buttons. I do the filtering before I ever fill the dataset. When it arrives at the report it is in the format that I want already. Not a direct answer, but a possible alternative. For the same reasons that you mentioned, parameter-based or fields and boxes on the report itself that are unwanted, I perform the filter on the datasource myself. I use a bindingsource to populate the reports dataset.
iCanDivideByZero 27-Jun-13 7:30am    
I actually ended implementing it they way you mentioned, as I was not having much luck otherwise.

1 solution

First of all,it is not a dumb question at all :)
Based on your question, let me paint a scenario. Say you have data belonging to 2 different systems in a single sql table. If you pass the system id 1 as a report parameter, you successfully filter the data belonging to system 1. If you pass system id 2, you filter to get data for system 2. You want a default filter when the report loads (in case you haven't actually passed the report parameter i.e. System ID 1 or 2...let's say you have passed an uninitialised parameter 0). Is this correct?

If so, change your filter criteria expression from something like
=Parameters!SystemIDParm.Value
to
=Parameters!SystemIDParm.Value OR Fields!SystemID.Value

The second expression looks for the passed report parameter to filter the data on...if it can't find it, it will just return data for both system 1 and system 2.

Hope that makes sense. Good luck!
 
Share this answer
 
v2
Comments
iCanDivideByZero 12-Jun-13 7:52am    
I tried your solution, but I received the following error on the page at runtime:

"An error has occurred during report processing.
Failed to evaluate the FilterValue of the Tablix ‘Tablix1’."

Here is the filter I used. Perhaps you can see something, that I am not.

"=Parameters!DateFilterParam.Value Or Fields!BillDate.Value"

Please let me know what you and thanks for any help you can give.
code_madi 12-Jun-13 9:34am    
I have actually used this logic successfully in one of my projects. I am reasonably confident that the complication in your case is due to the fact that it is a datetime parameter that is being passed here. Can you post the code that is passing the parameter to the report? Could it be that a null value instead of the .net default datetime value of 01/01/0001 could be causing this issue? Try assigning it a default datetime value instead of leaving it as a null. You could change the filter to just be =Fields!BillDate.Value. If this works, you can be sure that it is the first part of the filter that is the problem.
iCanDivideByZero 13-Jun-13 7:33am    
Hello,
Sorry for this late response. I tried doing what you mentioned and came up with the same result. Below is the method, perhaps that will shed more light on the situation.

private void BindData()
{
// Bind the report viewer control.
string queryStr = @"SELECT * FROM Invoice_Table";
SqlQueryParameter queryParams = new SqlQueryParameter();
DataSet ds = SqlDataAccessUtility.SQLSelect("tblBilling", queryStr, queryParams,
CommandType.Text);

ReportParameter[] param = new ReportParameter[1];
if (!string.IsNullOrEmpty(DateTextBox.Text))
{
param[0] = new ReportParameter("DateFilterParam", DateTextBox.Text);
}
else
{
param[0] = new ReportParameter("DateFilterParam",
new DateTime().ToShortDateString());
}
rvInvoices.LocalReport.SetParameters(param);

ReportDataSource rds = new ReportDataSource("InvoiceDataSet", ds.Tables[0]);
rvInvoices.LocalReport.DataSources.Clear();
rvInvoices.LocalReport.DataSources.Add(rds);
rvInvoices.LocalReport.Refresh();
rvInvoices.Visible = true;
}
code_madi 13-Jun-13 8:17am    
So when you pass a value through the datetextbox, does your report work? If so, what is the format of the date string in your text box.Use the same format and hard code 01/01/0001 in your else condition (instead of new DateTime().ToShortDateString(). See if that works.
iCanDivideByZero 13-Jun-13 10:52am    
I did the following: string dateStr = "01/01/0001";//new DateTime().ToShortDateString(); param[0] = new ReportParameter("DateFilterParam", dateStr); I received the same result an error was displayed. So I went ahead and changed my filter to just "=Parameters!DateFilterParam.Value", and the report simply came back empty; no error. Perhaps I am not doing something incorrectly with the setup of the filter maybe?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900