Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to add row numbers to the beginning of the rows in the table. Rowno() doesn't work.
rowno(total)
Try this
Load
AutoNumber(FieldName) as RowNumber,
YourOtherFields
From YourTable;
Is there a way to do this on the page?
Can you share a sample SS like what do you want and if you want it in script or chart?
i want it in chart
Like how, Rowno() Should work in charts, that why i asked for sample SS.
Rowno() function will work in your case to generate numbers.
if not share the sample how you are trying to generate row numbers ?
RowNo() has some issues, particularly when 0/null values are suppressed.
Chart-level scripting actually has a rare use case here - I've used the below to generate accurate row numbers.
// Row Numbers: Requires a measure named Row with a starting value of 0 or null(), name can be adjusted
Let P = HCNoRows();
For J = 1 to P
Put Row(J) = J;
Next;
Hello Sevvalk
We can use row number in the table using rowno().
Do you need the result as below capture?
But, rowno() can not display TOTAL.
if you need others, Could you give us the sample data?
Best Regard
hanna.choi
rowno(total)