Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can someone explain why this statement:
load
a;
load
RowNo() as a
AutoGenerate(10);
behave like this:
?
Hello,
You may use RecNo() instead RowNo()
Load
A
;
LOAD
RecNo() as A
autogenerate(10);
Regards
Hi
PFA...
I don't understand your point.
Hello,
You may use RecNo() instead RowNo()
Load
A
;
LOAD
RecNo() as A
autogenerate(10);
Regards
Thanks. Now i see what is wrong hire.
See my script
A:
LOAD * Inline [
A,Name,Sales
1,Nirmal,1000
];
LOAD
RecNo() as A
autogenerate(10);
RowNo() is only defined in the topmost Load statement. So, either you move your RowNo() to this Load, or you use the RecNo() function instead.
HIC