
Hello people!
I was wondering if it's possible to convert any number into its equivalent in text. For instance,
1 to One
2 to twp
3 to three
etc.
Thanks for the feedback!
you could try something like this :
Switch(
Value, // replace "Value" with the number you want to convert
1, "one",
2, "two",
3, "three",
4, "four",
5, "five",
6, "six",
7, "seven",
8, "eight",
9, "nine",
10, "ten",
"number not supported" // this is the default case
)