Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have a requiremnt where i need to assign a numbers to the given field ,but also it shud reset if the field value changes?
Can you please provide some test data, which will help us to understand your requirement.
Hi,
You can use Autonumber() in script
LOAD *,AutoNumber(FieldA) as AutoNr Inline [
FieldA,B
A,1
A,2
A,3
B,4
B,5
B,6
];
Regards,
Antonio
or
LOAD *,AutoNumber(RowNo(),FieldA) as AutoNr Inline [
FieldA,B
A,1
A,2
A,3
B,4
B,5
B,6
];