Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
josemaria_cabre
Contributor III
Contributor III

split dimension

Hi,

I have a table with this structure

ReferenceTypeFromToLevelCode
00100206/04/2018 0:0006/04/2020 0:00L2578060,578311

 

How do I split dimension "code" in script, having this table as result? (1 row per Code coincidence)

ReferenceTypeFromToLevelCode
00100206/04/2018 0:0006/04/2020 0:00L2578060
00100206/04/2018 0:0006/04/2020 0:00L2578311

 

Thanks in advance for your help, 
Jose.

Labels (2)
1 Solution

Accepted Solutions
Taoufiq_Zarra

Maye  be

Data:

LOAD Reference, Type,"From", To, Level,subfield(Code,',') as Code INLINE [
    Reference, Type, From, To, Level, Code
    0010, 02, 06/04/2018 0:00, 06/04/2020 0:00, L2, "578060,578311"
];

 

Capture.JPG

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

2 Replies
Taoufiq_Zarra

Maye  be

Data:

LOAD Reference, Type,"From", To, Level,subfield(Code,',') as Code INLINE [
    Reference, Type, From, To, Level, Code
    0010, 02, 06/04/2018 0:00, 06/04/2020 0:00, L2, "578060,578311"
];

 

Capture.JPG

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
josemaria_cabre
Contributor III
Contributor III
Author

Worked perfect!

Thanks for your help Taoufiq!

Best regards,
Jose