How can I add a prefix in thisRow.rowId()

Hey Folks,

I am trying to add a Prefix in the row ahead of this thisRow.rowId().

Eg
HH101
HH012
HH103.

Hi @Hemang_Jain and Welcome to the Community :partying_face: !

Maybe you could try with Format() ?

E.g.: in a text field, this should give you the result you’re looking for :blush:

Format(
  "HH{1:000}",
  thisRow.RowId()
)

Depending on your use case scenario, there might be other ways to get there too :innocent:
(I’m sadly a bit too short on time to give you more examples)

I hope this helps though :blush:.
Don’t hesitate if you have question(s).

3 Likes

Thank You Champ! It worked.

No problem @Hemang_Jain :grin: !

I’m really glad to know this worked for you :raised_hands: !

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.