Hi @Anonymous,
You didn't miss anything.
What Mabel means is that first you should build an array for your Text content.
If there is no array, then the whole Text content would be considered as a single string.
To create an array for each line, we could workaround this with the Split() function.
For example:
split('a;b;c',';')
This would return the following Array:
["a", "b", "c"]
Please consider add a separator at the end of each line, make sure this character is different from characters within the Text content.
Then you should be able to use the Last function to get the Last line.
Regards,
Michael