I have a age column:
A
"25-34"
"18-24"
34
"35-44"
"+65"
26
32
70
...
I wanna replace the single digits with the appropriate range of age. I am kinda newbie and I am stuck. For instance, 32 is gonna be replaced with the string "35-44" What would be the proper way to replace integers with proper range of age?
Thanks in advance.
my expected column would be:
A
"25-34"
"18-24"
"25-34"
"35-44"
"+65"
"25-34"
"25-34"
"+65"
...