HOw to extract last word in an array

Hi @nick.v,

Can you try the code below and see if it solves the requirement? :slight_smile:

Trim(valueFromCell.Substring(0,valueFromCell.IndexOf("WR"))).Split(" "c).Last

4 Likes