Create running number that always start from 1 until the end of row in word document

What is the function to Create running number that always start from 1 until the end of row in word document

adityo_reksopra_0-1714519658566.png

 

Solved Solved
0 5 83
1 ACCEPTED SOLUTION

Make sure there are spaces before and after the comma in " , " 

View solution in original post

5 REPLIES 5

You can use this technique (INDEXOF()) to derive sequential numbering and use it in your template like any other column.

 

<<COUNT(
  SPLIT(
    ANY(
      SPLIT(
        (โ€œ , โ€œ & [_THISROW].[Related cops] & โ€œ , โ€œ),
        (โ€œ , โ€œ & [id column] & โ€œ , โ€œ)
      )
    ),
    โ€œ , โ€œ
  )
)>>

 

Embed it inside the existing <<START>><<End>> tags.

Hi @TeeSee1 , thank you for your response, could you help me, where the code have to put inside of the <<Start>><<End>>?

Pers.No 

Full Name 

Date of Birth 

Start Date 

End Date 

Loan Balance 

Description 

  

Start date Insurance 

End date Insurance 

Bank Penerima 

Nomor Rekening 

Nama Pemilik Rekening 

<<Start:[Related cop penutupans]>><<[NRP_VC]>> 

<<[Full Name_VC]>> 

<<TEXT([Date of Birth_VC],โ€dd/mm/yyyyโ€)>> 

<<TEXT([Start Date Loan_VC],โ€dd/mm/yyyyโ€)>> 

<<TEXT([End Date Loan_VC],โ€dd/mm/yyyyโ€)>> 

<<[Loan Balance_VC]>> 

  

<<[Desc_VC]>> 

  

<<TEXT([Start Period Insurance_VC],โ€dd/mm/yyyyโ€)>> 

<<TEXT([End Date Insurance],โ€dd/mm/yyyyโ€)>> 

<<[Bank Penerima]>> 

<<[Nomor Rekening]>> 

<<[Nama Pemilik Rekening]>> <<End>> 

Hi @TeeSee1, the output is like this, but what i need is like this

No 

Pers.No 

Full Name 

Date of Birth 

Start Date 

End Date 

Loan Balance 

Description 

  

Start date Insurance 

End date Insurance 

Bank Penerima 

Nomor Rekening 

Nama Pemilik Rekening 

<<Start:[Related cop penutupans]>><<COUNT(SPLIT(ANY(SPLIT((","&[_THISROW].[Related cop penutupans]&","),(","&[Key]&","))),","))>> 

<<[NRP_VC]>> 

<<[Full Name_VC]>> 

<<TEXT([Date of Birth_VC],โ€dd/mm/yyyyโ€)>> 

<<TEXT([Start Date Loan_VC],โ€dd/mm/yyyyโ€)>> 

<<TEXT([End Date Loan_VC],โ€dd/mm/yyyyโ€)>> 

<<[Loan Balance_VC]>> 

  

<<[Desc_VC]>> 

  

<<TEXT([Start Period Insurance_VC],โ€dd/mm/yyyyโ€)>> 

<<TEXT([End Date Insurance],โ€dd/mm/yyyyโ€)>> 

<<[Bank Penerima]>> 

<<[Nomor Rekening]>> 

<<[Nama Pemilik Rekening]>> <<End>> 

adityo_reksopra_0-1714625651110.png

 

 

Make sure there are spaces before and after the comma in " , " 

Thank you! @TeeSee1 I've been working this whole week, and solved by you within minutes

Top Labels in this Space