Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
sicdude
Contributor III
Contributor III

Merge two fields as one dimension

So I have data for a softball team from each of their games.   I would like to see some game by game trending, but each game does not have a unique id.   The ID comes from the Tournament# and the Game# .   Is it possible in the expression editor to use both fields combined as a single dimension?  IE: T1G1, or T2G5?   This isn't a concatenation, but more a "key" scenario

1 Solution

Accepted Solutions
Vegar
MVP
MVP

You can concatenate  the fields in the script or a calculated dimension into the app.

Script:

Load

[Tournament#] &  [Game#] as ID,

[Tounament#],

[Game#]

From source;

 

Calculated Dimension

= [Tournament #] & [Game#]

View solution in original post

1 Reply
Vegar
MVP
MVP

You can concatenate  the fields in the script or a calculated dimension into the app.

Script:

Load

[Tournament#] &  [Game#] as ID,

[Tounament#],

[Game#]

From source;

 

Calculated Dimension

= [Tournament #] & [Game#]