ridhirao22
Programmer
Hi,
Using CR2008 and I found this solution exactly what I am looking for and wanted to try but couldn't figure how I could correct my formula.
I get the error when I try the solution suggest in this forum when I create the @delimit. "The remaining text does not appear to be part of the formula"
Create a Custom Function (named 'Delimit') with this text:
// Delimit()
// enclose each value in array in **, returning an array
Function (Stringvar Array params)
Split("*" + Join(params, "*,*") + "*", ",")
Modify the report's record-selection formula:
If {?Customer Name}<>"ALL" Then
{TABLE.CUSTOMER_NAME} LIKE Delimit({?Customer Name})
Else
True
Thanks in advance,
RR
Using CR2008 and I found this solution exactly what I am looking for and wanted to try but couldn't figure how I could correct my formula.
I get the error when I try the solution suggest in this forum when I create the @delimit. "The remaining text does not appear to be part of the formula"
Create a Custom Function (named 'Delimit') with this text:
// Delimit()
// enclose each value in array in **, returning an array
Function (Stringvar Array params)
Split("*" + Join(params, "*,*") + "*", ",")
Modify the report's record-selection formula:
If {?Customer Name}<>"ALL" Then
{TABLE.CUSTOMER_NAME} LIKE Delimit({?Customer Name})
Else
True
Thanks in advance,
RR