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

combination of diff. variable to create a new variable.

Hi QlikCommunity,

Is it possible to combine this value on the picture to and appear it on one table?

I want to combine this numbers on a table to look like this 205-0-4-7-29-0000

Untitled.png

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

You need an expression to concatenate those field values:

     =PCINum & '-' & MDINum & '-' & BINum & '-' & SINum & '-' & Parcel & '-' & PType

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

4 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

You need an expression to concatenate those field values:

     =PCINum & '-' & MDINum & '-' & BINum & '-' & SINum & '-' & Parcel & '-' & PType

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Kushal_Chawda

if these are fields in scripts then do as below

load *,

PCINum& '-' & MDINum &'-'& BINum &'-'& SINum &'-'& Parcel&'-'& PType as Key

From Table

Not applicable
Author

Thanks for helping me sir Jonathan

Anonymous
Not applicable
Author

In script

load PCINum &   MDINum  & BINum& SINum & Parcel  & PType as Newvariable

;

laod it into front end.