Last active
February 13, 2022 21:41
-
-
Save Omid-M22/348560dd9095a10dc299d7702fa79ba3 to your computer and use it in GitHub Desktop.
Reverse Text in Microsoft Excel by Lambda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ReverseText=LAMBDA([text], | |
IF(LEN([text]) = 1, [text], RIGHT([text]) & reversetext(LEFT([text], LEN([text]) - 1))) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment