Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I'm facing issue to create rowno based on ID. Please check the below image for your reference what i'm expecting output
rowno should starts with 1 for every new ID. Please help me out...
You can do like below in Preceding Load
AutoNumber(RowNo(), ID) as RowNo
Please share some sample data....
You can do like below in Preceding Load
AutoNumber(RowNo(), ID) as RowNo
Or Please try like this
LOAD * , RowNo();
LOAD * Inline [
Id,
1,
1,
1,
2,
2,
2,
3,
4
];
Hi Siva,
You can use AutoNumber(RecNo(), ID) AS RowNo
Regards,
David