Yes, I want to export a calculated character chain in a text field, but i need this exactly. The character chain does not contain control or special codes, just letter, numbers and "space" characters.
I would like to export a text field, but the characters in the exported file occupy 2 bytes.
I would only need the 1-byte character codes. How can I create such an export?
I show the problem in this picture.
Hi eos, thanx your help.
I modified your code
Let ( [
pos = Position ( Shop_cikkadatok::pic ; ";" ; 1 ; 1) ;
rem = Length ( Shop_cikkadatok::pic ) - pos ;
thePart = Left ( Shop_cikkadatok::pic ; pos - 1 ) ;
res = Left ( thePart ; 1 ) & "/" & Middle ( thePart ; 2 ; 1 ) & "/" & thePart & ".jpg;"
] ;
res & Case ( rem ; Middle ( Shop_cikkadatok::pic ; pos + 1 ; rem ) )
)
If the original data example this "Logo_MAXIM;DIP16;DIP16_Z;" the result will this: "L/o/Logo_MAXIM.jpg;DIP16;DIP16_Z;"
This better than my code but I would like to modify second and third part too: "/L/o/Logo_MAXIM.jpg;/D/I/DIP16;/D/I/DIP16_Z;"
Our company get every day in a huge database with picture names. But we need exact path of the picture.
Excuse me my weak English knowledge, but this important for me.
( etc. in the cell "Shop_cikkadatok::pic" I have some names "Picture01;Picture02;" and I would like convert to "/P/i/Picture01.jpg;/P/i/Picture02.jpg;")
Left (
Substitute
(
(
"/" & Substitute
(Shop_cikkadatok::pic ; ";" ;".jpg;" )
)
;";";";/");
Length (
Substitute
(
(
Substitute
(Shop_cikkadatok::pic ; ";" ;".jpg;" )
)
;";";";/"))
)
With this script my partial result now this: "/Picture01.jpg;/Picture02.jpg;"
How to continue?
Thanx for all
Hi
I have lot of simple comma separated text string than this here:
-> Logo_ERNI;SMCStandardkabel;SMCStandardkabel_Z;
-> SO8;SO8_Z;
And I would like to convert to this:
-> /L/o/Logo_ERNI.jpg;/S/M/SMCStandardkabel.jpg;/S/M/SMCStandardkabel_Z.jpg;
-> /S/O/SO8.jpg;/S/O/SO8_Z.jpg;
I managed to reach away this point:
-> /Logo_ERNI.jpg;/SMCStandardkabel.jpg;/SMCStandardkabel_Z.jpg;
-> /SO8.jpg;/SO8_Z.jpg;
I don't know how to continue.
Please let somebody help to solve this problem, if necessary, I send the partial solution.
THX
Greetings,
I collected in a calculation field my product label's datas for Zebra S4M printer. These datas escape sequencies.
How can I send this field direct to the printer?