Skip to content

Instantly share code, notes, and snippets.

@Bhavya2502
Bhavya2502 / Number_To_Words
Created August 9, 2022 13:17
Convert Very Large Numbers to Words for both Indian as well as International Numbers
/* Link to YouTube Video - https://www.youtube.com/watch?v=u1gzAcwmlpo*/
Number_To_Words = LAMBDA(Number, [Indian_or_InterN],
LET(
Option, IF(ISOMITTED(Indian_or_InterN), 1, Indian_or_InterN),
l, LEN(Number),
L_1, SEQUENCE(19),
R_1, VSTACK(
"One",
"Two",