I have a spreadsheet that the names are formatted last,first (starting in cell A2) but I need the order changed. I know the excel formula but that requires me to enter it into an empty cell. Is it possible in VBA to have it switch the order (first last) in the same cell (A2) so it just changes the cell value rather than having to apply the formula to a different cell and then override the data in column A?
Excel formula: MID(A2&" "&A2,FIND(",",A2)+1,LEN(A2))
Excel formula: MID(A2&" "&A2,FIND(",",A2)+1,LEN(A2))