Tableau split string and take from x token until the end of tokens
Tableau split string and take from x token until the end of tokens
This should work:
RIGHT([Field Name],LEN([Field Name]) - FINDNTH([Field Name],/,2))
This is returning the right part of the string [Field Name] and specifying to keep the last n characters, where n = length of the original string minus the location of the second /.
Tableau split string and take from x token until the end of tokens
Tableau split string and take from x token until the end of tokens