Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
What is the syntax in a load script to reference an inline table as a wildmatch value reference? When I try to load this syntax the script error says it can't find the field [Mfgs] but this is not a field its an inline table I loaded previously.
Mfgs:
Load * INLINE [
Customer Input, Customer
X, X
Y, Y];
WildMatch(Title, '*'&[Mfgs]&'*') as [Customer Name]
The syntax is a bit complex. I have a complete example here:
Qlikview Cookbook: Mapping With Wildcards http://qlikviewcookbook.com/recipes/download-info/mapping-with-wildcards/
You can also use Qlikview Components
CALL Qvc.CreateWildMapExpression (vMapExpr, 'Mfgs');
-Rob
Rob your link doesn't allow me to download the qvw, am I missing something?
The linked page should contain a download button that looks like a down arrow next to the description. Do you get that?
-Rob
Rob i was able to download the qvw, it was my use of an older IE Browser that caused the problem. However this seems very complex. I just want to be able to wildmatch values using an inline table to an existing field to create a new field. Does it really have to be this complicated?
Yes
It's not as complex as it looks if you just copy the script that builds the wildmatch expression. Then fill in the table wiith your values.