Hi, hope someone can help.
I have got the following in the record selection formula
The only parameter that seems to want to work is the Date range one.
I am populating the parameters via visual studio, but even when I just run the report, and populate the parameters myself, it giving the same output, which to be honest is wrong.
For example if I use a wide date range, and then set all parameter to "xxxxxxxx", but then the "?campaign_code" to just look for 1 given value, it brings back everything over a given date range, and seems to ignore what I have actually asked for.
?Lead_code and ?campaign_code are discrete with Multiple values, and the ?company_guid and ?contact_guid are just discrete values
this is driving me up the wall, and thanks in advance for any assistance.
I have got the following in the record selection formula
Code:
If {?Lead_Code} ='xxxxxxxx'
Then {main_report_test.Lead Code} like '*'
Else {main_report_test.Lead Code} = {?Lead_Code}
and
If {?Company_Guid} ='xxxxxxxx'
Then {main_report_test.Company_Guid} like '*'
Else {main_report_test.Company_Guid} = {?Company_Guid}
and
If {?Contact_guid} ='xxxxxxxx'
Then {main_report_test.Contact_Guid} like '*'
Else {main_report_test.Contact_Guid} = {?Contact_guid}
and
If {?campaign_code} ='xxxxxxxx'
Then {main_report_test.Campaign_Name} like '*'
Else {main_report_test.Campaign_Name} = {?campaign_code}
and
{main_report_test.Date Called} = {?Date_Range}
The only parameter that seems to want to work is the Date range one.
I am populating the parameters via visual studio, but even when I just run the report, and populate the parameters myself, it giving the same output, which to be honest is wrong.
For example if I use a wide date range, and then set all parameter to "xxxxxxxx", but then the "?campaign_code" to just look for 1 given value, it brings back everything over a given date range, and seems to ignore what I have actually asked for.
?Lead_code and ?campaign_code are discrete with Multiple values, and the ?company_guid and ?contact_guid are just discrete values
this is driving me up the wall, and thanks in advance for any assistance.