Hi, Shayeebur!
Try this:
I4: =DERECHA(H4;LARGO(H4)-HALLAR(", ";H4))&" "&IZQUIERDA(H4;HALLAR(", ";H4)-1) -----> in english: =RIGHT(H4,LEN(H4)-SEARCH(", ",H4))&" "&LEFT(H4,SEARCH(", ",H4)-1)
I5: =DERECHA(H5;LARGO(H5)-HALLAR(" ";H5))&", "&IZQUIERDA(H5;HALLAR(" ";H5)-1) -----> in english: =RIGHT(H5,LEN(H5)-SEARCH(" ",H5))&", "&LEFT(H5,SEARCH(" ",H5)-1)
The general formula is:
=RIGHT(<source>,LEN(<source>
-SEARCH(<source separator>,<source>
)&<target separator>&LEFT(<source>,SEARCH(<source separator>,<source>
-1)
In both cases the formula is the same, just change source and target separators, ", "/" " & " "/", " respectively.
Just advise if any issue.
Regards!