How to show line number of row (ie: 1, 2, 3, etc)
I am showing a list of opportunities and I'd like to see how many numbers I have like in the example below. How could I do this?

Thanks,
Charlie

Thanks,
Charlie
Tagged:
1
Categories
- 7.9K Questions
- 926 Ideas
- 220 Discussion Categories
- 178 General
- 9 Community Feedback
- 3 Community Info
- 18 Knowledge Base
Comments
Firstly, create a template field on the table by clicking the 'Add Field(s)' dropdown on the table. You can label the template field anything you want.
In the template use: And make sure 'Allow HTML' is selected.
Then, add an inline snippet with the following code: This iterates through each 'counter' element and inserts the number for you.
You could use a custom field renderer on any field (e.g. Record ID) that looks like this
{{index}}
This is leveraging the {{index}} row merge variable which is available in row merge contexts.