Hi Here is a sample, part number + description. I need to remove the description and keep the part number. How do I do that ?
BX54-A Conti VX Advance
4080802 OETS MULTI-V BELT
Hi Here is a sample, part number + description. I need to remove the description and keep the part number. How do I do that ?
BX54-A Conti VX Advance
4080802 OETS MULTI-V BELT
Can we assume that the first space separate the part number of the description for all lines?
If that is the case, make your Extraction as Based on: Javascript
Here’s the script:
var extraction = data.extract(10,36,0,1,“<br />”); //here set your proper extraction
extraction = extraction.slice(extraction.indexOf(’ ')+1);
yes the first space. I will try your script. thks