Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I want to show serial values like above , means for each group values starting from 1 .?How can i do ,please suggest
May be try this:
AutoNumber(RowNo(), shade) as s_index
Sample script:
Table:
LOAD *,
AutoNumber(RowNo(), shade) as s_index;
LOAD * Inline [
shade
A
A
A
A
A
B
B
B
B
B
];
Output:
Thanks sunny