Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
some of my account numbers comes with seven zeroes in fornt, need to get rid of them, example below:
000000088899
0000000777111
00000003334
000000066666
should be presented as:
88899
777111
3334
66666
what would be the easiest way to remove these zeroes in the script?
num(evaluate([ACCOUNT NUMBER])) as [ACCOUNT NUMBER],
=Num(Field, '#0')
Hi,
use num#(FieldName)
Regards
haha, was a bit fast there. Actually it turned all of the "problem accounts" into null.
Any idea why?
Sorry for the hassle.
//O
Load Num(value) as Value;
Load * Inline [
value
000000088899
0000000777111
00000003334
000000066666
];
May be this:
LOAD Num(Num#(Num), '#0') as Num;
try num(num#(val)) as value
same result im afraid, null values
It is working fine for me
Load value,Num(value) as Value1;
Load * Inline [
value
000000088899
0000000777111
00000003334
000000066666
];
Hi,
Can you post your test app???
Regards