Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Drop the selection PharmacyName that appears under the field PharmacyName

I know it's possible to remove PharmacyName from the Listbox alone, but i need to use this field other places.
So it would work best if I dropped it in the script I think.

1 Solution

Accepted Solutions
sivarajs
Specialist II
Specialist II

try this in script

load *

from filepath

where substringcount(PharmacyName,'PharmacyName')=0;

View solution in original post

6 Replies
Not applicable
Author

select 'expression' in the 'Field' dropdown list of the list box object and type in:

if(PharmacyName<>'PharmacyName',PharmacyName)

Anonymous
Not applicable
Author

will this just drop it from the listbox?

If I use the field PharmacyName in a chart will PharmacyName appear as a selection?,

Not applicable
Author

yes, only from the listbox

Anonymous
Not applicable
Author

I want to drop it from everything. How can I do that?

sivarajs
Specialist II
Specialist II

try this in script

load *

from filepath

where substringcount(PharmacyName,'PharmacyName')=0;

Anonymous
Not applicable
Author

Perfect, thank you