Middle name in Msgbox VBA

ORoxo

Board Regular
Joined
Oct 30, 2016
Messages
149
Hey, guys
I'm having a VBA exam next Monday and I want to be as prepared as I can. In class, my teacher taught us how to get a msg box with first name and last name but we didn't learn how to extract middle names. I tried to ask him how to do so but he wasn't quite explanatory.
In class what we've learn was

Code:
Private Sub CommandButton8_Click()
    Dim T As String, FN As String, LN As String
    T = InputBox("Please type your full name")
    FN = MsgBox("Your first name is " & Left(T, InStr(T, " ")))
    LN = MsgBox("Your last name is " & Right(T, Len(T) - InStrRev(T, " ")))
End Sub

I was wondering if there's any way to present the middle name to the user - and, if so, how.

Let's say the user types "Wayna Nanook Aputsiaq Nanuk Berg" and I want to extract:

1) "Aputsiaq"
2) "Nanook"

Thanks,
ORoxo
 
Last edited:

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
This will extract all parts of the name entered provided the user enters the name using space delimiters (like "Wayna Nanook Aputsiaq Nanuk Berg").
Code:
Sub ReturnNames()
    Dim T As String, N As Variant, i As Long
    T = InputBox("Please type your full name")
    N = Split(T, " ")
    For i = LBound(N) To UBound(N)
        MsgBox "Part " & i + 1 & " of your name is " & N(i)
    Next i
End Sub
 
Upvote 0
This will extract all parts of the name entered provided the user enters the name using space delimiters (like "Wayna Nanook Aputsiaq Nanuk Berg").
Code:
Sub ReturnNames()
    Dim T As String, N As Variant, i As Long
    T = InputBox("Please type your full name")
    N = Split(T, " ")
    For i = LBound(N) To UBound(N)
        MsgBox "Part " & i + 1 & " of your name is " & N(i)
    Next i
End Sub

That's perfect, JoeMo. I had no idea you could do that!

What if he specifically asks for the 3rd name though, for instance?
 
Last edited:
Upvote 0
Code:
Private Sub CommandButton8_Click()
  Dim T As String, FN As String, LN As String, MD As String
  Dim rc, a, i As Integer, MN As String
  
  'Wayna Nanook Aputsiaq Nanuk Berg
  T = InputBox("Please type your full name")
  If T = "" Then Exit Sub
  
  a = Split(T, " ")
  FN = a(0)
  LN = a(UBound(a))
  rc = MsgBox("Your first name is " & FN & ".")
    If UBound(a) > 1 Then
    MN = Mid(T, Len(FN) + 1, Len(T) - Len(FN) - Len(LN) - 2)
    rc = MsgBox("Your middle name is possibly " & MN & ".")
  End If
  rc = MsgBox("Your last name is " & LN & ".")
End Sub
 
Upvote 0
That's perfect, JoeMo. I had no idea you could do that!

What if he specifically asks for the 3rd name though, for instance?
You are welcome.

Since the array N is zero-based, the 3rd name would be N(2).
 
Upvote 0
Code:
Private Sub CommandButton8_Click()
  Dim T As String, FN As String, LN As String, MD As String
  Dim rc, a, i As Integer, MN As String
  
  'Wayna Nanook Aputsiaq Nanuk Berg
  T = InputBox("Please type your full name")
  If T = "" Then Exit Sub
  
  a = Split(T, " ")
  FN = a(0)
  LN = a(UBound(a))
  rc = MsgBox("Your first name is " & FN & ".")
    If UBound(a) > 1 Then
    MN = Mid(T, Len(FN) + 1, Len(T) - Len(FN) - Len(LN) - 2)
    rc = MsgBox("Your middle name is possibly " & MN & ".")
  End If
  rc = MsgBox("Your last name is " & LN & ".")
End Sub

I appreciate your help, Kenneth. However, that is too complex based on what I have learned so far. Therefore, not really useful. Nonetheless, thanks for it.

You are welcome.

Since the array N is zero-based, the 3rd name would be N(2).

JoeMo, adapted the code a little bit and now it's perfect

Code:
Private Sub CommandButton2_Click()    Dim T As String, N As Variant
    T = InputBox("Please type your full name")
    N = Split(T, " ")
        MsgBox ("Your third name is " & N(3))
End Sub

Thanks once again for your help. This split function is great!
 
Last edited:
Upvote 0
JoeMo, adapted the code a little bit and now it's perfect

Code:
Private Sub CommandButton2_Click()    Dim T As String, N As Variant
    T = InputBox("Please type your full name")
    N = Split(T, " ")
        MsgBox ("Your third name is " & N([B][COLOR=#ff0000]3[/COLOR][/B]))
End Sub

Thanks once again for your help. This split function is great!
You are welcome, but caution, read my post #5 again. N is a zero-based array, if you want the third name that would be N(2). N(0) is the 1st name, N(1) the 2nd and so on.
 
Upvote 0
You are welcome, but caution, read my post #5 again. N is a zero-based array, if you want the third name that would be N(2). N(0) is the 1st name, N(1) the 2nd and so on.

Yeah, I tried out the code and realized how it worked. Once again thanks for your help! Really helped a lot.

Have a great weekend!
 
Upvote 0

Forum statistics

Threads
1,216,291
Messages
6,129,911
Members
449,540
Latest member
real_will_smith

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top