Hi All
I have a report that I am trying to assign record id to.
New Record always starts when it contains "Hello " so from first "Hello" every row should have assigned record id 1 until second "Hello" where it should start record id 2 and so on.
There is different amount of rows between them so it's not straight forward for me. Could you please help?
I think it should be done somehow with multi-row formula but I cannot quite get it right

Here is what I tried based on research:
IF Contains([Row-1:Field_1], "Hello")
then [Row-1:Record ID]+1
Else
[Row-1:Record ID]
Endif