Nov 14
The following formula returns the contents of cell A1, except for the first word:
=RIGHT(A1,LEN(A1)-FIND(" ",A1,1))
If cell A1 contains 2007 Operating Budget, the formula returns Operating Budget.
This formula returns an error if the cell contains only one word. The formula below solves this problem and returns an empty string if the cell does not contain multiple words:
=IFERROR(RIGHT(A1,LEN(A1)-FIND(" ",A1,1)),"")
For compatibility with earlier versions of Excel, use this formula:
=IF(ISERR(FIND(" ",A1)),"",RIGHT(A1,LEN(A1)-FIND(" ",A1,1)))
Popularity: 4% [?]








Recent Comments