I need a boolean formula which I am going to use to conditionally suppress the details section. The boolean will compare an array from a multi-value parameter to an array built from several database fields.
Sample Array from Parameter:
['A','B','D']
Sample Array from Database Fields:
['A','B','C','D','I','M']
Note: If needed and it makes sense I can concatenate either of these into strings rather than dealing with arrays, and the longest the string would ever be is 22 characters.
So how do I compare each element of the parameter array to see if any single on of them exists in the database array, and then return true?
Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports
Sample Array from Parameter:
['A','B','D']
Sample Array from Database Fields:
['A','B','C','D','I','M']
Note: If needed and it makes sense I can concatenate either of these into strings rather than dealing with arrays, and the longest the string would ever be is 22 characters.
So how do I compare each element of the parameter array to see if any single on of them exists in the database array, and then return true?
Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports