Skip to main content
Nahuel Arranz
Participant
April 19, 2022
Answered

how to make range selector recognize last word (counting from back to front)

  • April 19, 2022
  • 1 reply
  • 266 views

Hi there!

I need to invert the range selector counting, I mean that it starts from the end independently of the number of words in the text.
is there any way to do this? I suppose it has to count the number of words and make a calculation.
thanks

This topic has been closed for replies.
Correct answer Mylenium

You can simply set the selector mode to Words and absolute index. Then it's as trivial as applying an expression selector and changing the formula to

 

selectorValue * (textIndex-(textTotal-1))

 

Mylenium

1 reply

Mylenium
MyleniumCorrect answer
Legend
April 19, 2022

You can simply set the selector mode to Words and absolute index. Then it's as trivial as applying an expression selector and changing the formula to

 

selectorValue * (textIndex-(textTotal-1))

 

Mylenium

Nahuel Arranz
Participant
April 19, 2022

it works perfectly, thank you very much!