Formula
=INDEX(SPLIT(A2, " "), COLUMNS(SPLIT(A2, " ")))
- Here
spaceis the delimiter COLUMNScounts the number of items in the resultant arrayINDEXgets the item from the array
=INDEX(SPLIT(A2, " "), COLUMNS(SPLIT(A2, " ")))
space is the delimiterCOLUMNS counts the number of items in the resultant arrayINDEX gets the item from the array