Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am creating a dynamic inline table. The mock code of the Inline table is as below -
Let vRec = RowNo(); //RecNo()
For vStart = 1 to 10
Table:
LOAD Distinct * INLINE [
Start, RecNo
$(vStart), $(vRec) ];
NEXT vStart;
Somehow the RecNo() nor the RowNo() seems to give the record number for each record for the table.
Can you please suggest a way to achieve that?
Regards,
SK
Try this simple script
For vStart = 1 to 10
Table:
LOAD Distinct *, RowNo() AS RecNo INLINE [
Start
$(vStart) ];
NEXT vStart;
Try this simple script
For vStart = 1 to 10
Table:
LOAD Distinct *, RowNo() AS RecNo INLINE [
Start
$(vStart) ];
NEXT vStart;
Try these..
Let Rows=NoofRows(Table);
For vStart = 1 to 10
Table:
LOAD Distinct * INLINE [
Start, RecNo
$(vStart), $(Rows) ];
NEXT vStart;
Regards.
Siva
Thanks a lot. Works perfectly..
Cheers,
SK