Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Wildmatch in Intervalmatch

Hi Guys,

We've got a unique requirement whereby we need to interval match on a wildcard range.

For example,

GLAccountFromGLAccountToGLGroupDescription
1???????30001???????3080Sales
1???????35001???????3580Cost of Goods Sold

What is the simplest and easist way to do this?

The GL Account (e.g. 101001003000) would need to match to the 'Sales' GLGroupDescription by 'wildcarding' the question marks in the interval match.

Thanks.

4 Replies
johnw
Champion III
Champion III

Are the wildcards always in the same positions? If so, you could split the other digits into a separate field. So you have 13000 through 13080 as "Sales". Then it's a matter of generating the whole range, probably with a WHILE loop and iterno().

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

I can think of two Qlikview Cookbook examples that might help you.

"Mapping numeric ranges"

"Mapping with a table using wildcards"

-Rob

Not applicable
Author

John,

Unfortunately they can be in any position and may occur within more than one range.

e.g. 10??100??3800

johnw
Champion III
Champion III

Then perhaps handle it with a combination of the "mapping with a table using wildcards" in the QlikView cookbook and a while loop with iterno(). So if your table has 10??100??3800 10??100??3850, iterate to generate all values in the range, and then use the wildcard mapping approach handle the rest. I can try to assemble an example if you have trouble with it. Sounds like an interesting problem.