Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have data like
Flight code,
I want dived it into
Flight1, flight2
Hi,
Try this:
Table1:
Load*,
SubField([Flight code],'-',1) as Flight1,
SubField([Flight code],'-',2) as Flight2
;
LOAD * INLINE [
Flight code
JJ-DL
IB-UA
LH-UA
BA-UA
LH-AA
AA-UA
QZ-SQ
UA-WS
UA-AI
UA-DY
];