Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Left join based on a period

Good day.  Trying to join some information based on fields that are not unique.  So what would the script be to separate it out.

162.3.  Where everything before the first period is what I want to call Task List ID.  Everything between the periods I want to call Task Number.

So I want to separate based on the periods.  The two files are Excel so when I load the files.  This field comes in as xls. rather than delimited type.

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

LOAD

subfield(yourfield,'.',1) as First,

subfield(yourfield,'.',2) as Second

FROM yourexcel

View solution in original post

6 Replies
Clever_Anjos
Employee
Employee

Well, your files aren´t showing up. Maybe you should re-upload them

Anonymous
Not applicable
Author

Sorry...didn't upload.  Do you need them?


Clever_Anjos
Employee
Employee

Trying to figure out what you really want, could you give us more information?

Anonymous
Not applicable
Author

SOrry for the delay...I don't know where the button is to upload the file

Clever_Anjos
Employee
Employee

LOAD

subfield(yourfield,'.',1) as First,

subfield(yourfield,'.',2) as Second

FROM yourexcel

Anonymous
Not applicable
Author

Yahtzee!  Exactly what I needed.  Appreciate your help!  Have a great day!