Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Values for comma seperated values..

Hi,

I need help with following question.

I have many records in 'Account numbers'... like 10000 to 50000..

when we search the records with comma seperated value for e.g '10005,10115,45990,48900'. we should get the records for only that 4 'Account numbers.'

Please let me know your idea in detail as to how to achieve this..

Appreciate all the help..

Thanks

1 Solution

Accepted Solutions
stigchel
Partner - Master
Partner - Master

Have a look at the following article, I think you need the compound search so with brackets and a pipeline delimiter to use in a search object, which you can add to the sheet  for this field.

e.g.

(10005|10115|45990)

The Search String

View solution in original post

6 Replies
Not applicable
Author

You context of the Question is not clear.. where are you searching?  Are you loading the Qlikview Script. Please throw some more details or post the sample app.

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

You would have to use Replace function to replace the commas (,) to pipe (|),

i.e

=Replace('10005,10115,45990,48900',',','|')

See if this helps

stigchel
Partner - Master
Partner - Master

Have a look at the following article, I think you need the compound search so with brackets and a pipeline delimiter to use in a search object, which you can add to the sheet  for this field.

e.g.

(10005|10115|45990)

The Search String

MK_QSL
MVP
MVP

Go to Google

Search QlikFix

Search

Search by Copy and Pasting From an External List

Might be useful for you..

Not applicable
Author

Thanks Manish.. That Article was useful..

Not applicable
Author

Thanks.. Your info was helpful..