Hi,
I want to have a parameter that will accept multiple values entered by a user separated by semi-colons. Currently, I'm using the following selection formula for sites:
That works out well but now I want to do something similar with names which will be in lastname, firstname format. The comma will throw this off. What needs to be changed to accommodate semi-colons instead? I tried doing the following which didn't work out:
Thanks.
I want to have a parameter that will accept multiple values entered by a user separated by semi-colons. Currently, I'm using the following selection formula for sites:
Code:
({?sites}='' or ','+{table.sites}+',' in ','+Replace({?sites}," ","")+',')
That works out well but now I want to do something similar with names which will be in lastname, firstname format. The comma will throw this off. What needs to be changed to accommodate semi-colons instead? I tried doing the following which didn't work out:
Code:
({?names}='' or ';'+{table.names}+';' in ';'+Replace({?names}," ","")+';')
Thanks.