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

To get a string in the braces, eg: (abcdd)Tempid, I want only abcdd as an outcome...

Hi

To get a string in the braces, eg: (abcdd)Tempid

I used

LOAD SubField(Name,'(',2) as Name_Der

FROM Data.xlsx (ooxml, embedded labels, table is Sheet1);

However this is giving the entire string as abcdd)Tempid, I need only abcdd as an out come, Please help me out...

2 Replies
Not applicable
Author

It's not working...

Not applicable
Author

Hi,

Try this:

LOAD

subfield(subfield(Name,'(',2),')',1) as Name_Der

FROM Data.xlsx (ooxml, embedded labels, table is Sheet1);

This will work.