Forum Discussion
stepic7
Feb 26, 2022Copper Contributor
switching text in a string
I tried to figure out how to switch a text where I want to move the last characters, always the same, to the beginning instead For example car.flx bike.flx ... should become flx.car flx.bike ...
- Feb 26, 2022
OliverScheurich
Feb 26, 2022Gold Contributor
=LET(a,FIND(".",A1),
b,RIGHT(A1,LEN(A1)-a),
c,LEFT(A1,a-1),
CONCATENATE(b&"."&c))An alternative could be above formula if you work with Office365 or 2021.