Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
LOAD
subfield(yourfield,'.',1) as First,
subfield(yourfield,'.',2) as Second
FROM yourexcel
Well, your files aren´t showing up. Maybe you should re-upload them
Sorry...didn't upload. Do you need them?
Trying to figure out what you really want, could you give us more information?
SOrry for the delay...I don't know where the button is to upload the file
LOAD
subfield(yourfield,'.',1) as First,
subfield(yourfield,'.',2) as Second
FROM yourexcel
Yahtzee! Exactly what I needed. Appreciate your help! Have a great day!