Lable with Count Number

I used the repeat group. How I put a label that shows the counting number?

Hi Hassienh,

You can use the position() function to get the index of the repeat group. Keep in mind that this starts counting at 0, so you may need to add a one if you need the numbering to start at 1, like this:

position(..) + 1

You can learn more in the documentation on Calculations with repeat groups questions and Advanced Functions for Repeat Groups.

Thanks for your reply. I used the same function with add integer 1, but when I want to show the value it appears the same number without change. For example, the first repeat appears as 1 and the second repeated also shows 1.

Thank you I solved it.