Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all
How do You generate field 2 from field 1 in a script
Filed1, Filed2
A, 1
B ,1
B ,2
C, 1
C, 2
C, 3
D ,1
D ,2
Try this
LOAD *, AutoNumber(RecNo(), Filed1) as Filed2 Inline [
Filed1
A
B
B
C
C
C
D
D
];
Try this
LOAD *, AutoNumber(RecNo(), Filed1) as Filed2 Inline [
Filed1
A
B
B
C
C
C
D
D
];
Good, thank you very much!