This is more of a curiosity than anything else.
I was trying to figure out a way to convert numbers to text strings for various reporting purposes; example below:
1 = One, 1st, First
2 = Two, 2nd, Second
3 = Three, 3rd, Third
etc...
It didn't take long for me to decide to bag this challenge and simply create a table with this information (luckily, I only needed these conversions up to #30) with which I could join to my existing data.
Does anyone have a better way to do this? Is there some formula I'm not familiar with that can do this conversion on-the-fly?
Who knows, perhaps this would make for an interesting challenge.
I was trying to figure out a way to convert numbers to text strings for various reporting purposes; example below:
1 = One, 1st, First
2 = Two, 2nd, Second
3 = Three, 3rd, Third
etc...
It didn't take long for me to decide to bag this challenge and simply create a table with this information (luckily, I only needed these conversions up to #30) with which I could join to my existing data.
Does anyone have a better way to do this? Is there some formula I'm not familiar with that can do this conversion on-the-fly?
Who knows, perhaps this would make for an interesting challenge.