Convert number to assigned names and joined with another names
Solved/Closed
Related:
- Convert number to assigned names and joined with another names
- Monk names wow - Guide
- Count names in excel - Guide
- Error 5 getting session names - Guide
- Funny ikea names - Home - Apps & Sites
- Convert number to words in excel - Guide
2 responses
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
30 Jan 2017 à 12:14
30 Jan 2017 à 12:14
Hi Mariam,
Put this custom function in a standard module (Alt+F11 > top menu of new window > insert > module):
In Excel use:
=NumberToName(A2)
To add more names to numbers, then add to the cases in the code.
Best regards,
Trowa
Monday, Tuesday and Thursday are usually the days I'll respond. Bear this in mind when awaiting a reply.
Put this custom function in a standard module (Alt+F11 > top menu of new window > insert > module):
Function NumberToName(MyNumber As Integer)
Dim x, y As Integer
x = Len(MyNumber) + 1
Do
y = y + 1
NtN = Mid(MyNumber, y, 1)
Select Case NtN
Case 1
NumberToName = NumberToName & "Biju, "
Case 2
NumberToName = NumberToName & "Daisy, "
Case 3
NumberToName = NumberToName & "Mahmoud, "
End Select
Loop Until x = y
NumberToName = Left(NumberToName, Len(NumberToName) - 2)
End Function
In Excel use:
=NumberToName(A2)
To add more names to numbers, then add to the cases in the code.
Best regards,
Trowa
Monday, Tuesday and Thursday are usually the days I'll respond. Bear this in mind when awaiting a reply.
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
31 Jan 2017 à 11:21
31 Jan 2017 à 11:21
Hi Mariam,
Instead of using "1.1, 1.2, 1.3", use "1A,1B,1C" for the following function to work (this way you will have room for 234 names):
Best regards,
Trowa
Instead of using "1.1, 1.2, 1.3", use "1A,1B,1C" for the following function to work (this way you will have room for 234 names):
Function NumberToName(MyNumber As String)
Dim x, y As Integer
Dim NtN As String
x = Len(MyNumber) - 1
y = -2
Do
y = y + 3
NtN = Mid(MyNumber, y, 2)
Select Case NtN
Case "1A"
NumberToName = NumberToName & "Biju, "
Case "1B"
NumberToName = NumberToName & "Daisy, "
Case "1C"
NumberToName = NumberToName & "Mahmoud, "
End Select
Loop Until x = y
NumberToName = Left(NumberToName, Len(NumberToName) - 2)
End Function
Best regards,
Trowa
30 Jan 2017 à 15:32
Thank you so much for you supper help. Just if you can help me more since using numbers will only allow me to have 9 names. How can I add more than 9 names? as I tried to used 1.1, 1.2, 1.3 and so on but only it takes the number 1. Please help me more....