Ordered list of Top Ranked insight

I have successfully created an insight that returns the top 5 ranked categories in a field. Currently, the formatting options include an unordered list but, inexplicably, not an ordered list. I am trying to find a work around, such as referencing the index value of each of my FOR loop results before its respective result, but this isn’t working and i am still a little incredulous that there isn’t a simpler way to actually display the ranks of a “Top Ranked” computation. my code appears like this:
image

I am not able to include the actual results due to security constraints but the results are formatted like this:

Pancakes
Waffles
French Toast
Muffins
Scones

How can i number this according to rank?

Hello @jtroxel !

You can do this by removing the bullet and in the if expression add an index reference with “+1” to make an ordered list.

image

1 Like

Beautiful thank you @duncan ! i tried that already but not inside the “Expression” code snippet. its working now.

1 Like