Skip to content

Instantly share code, notes, and snippets.

@Omid-M22
Last active February 13, 2022 21:41
Show Gist options
  • Save Omid-M22/348560dd9095a10dc299d7702fa79ba3 to your computer and use it in GitHub Desktop.
Save Omid-M22/348560dd9095a10dc299d7702fa79ba3 to your computer and use it in GitHub Desktop.
Reverse Text in Microsoft Excel by Lambda
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