0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Excel VBAのSplit関数の使い方メモ

Posted at

セルの値の状態

以下のように全角スペースで、姓と名前が区切られている場合に
姓と名前を別々で変数に格納していきます。
変数に格納した後、B1セルに姓、C1セルに名前を入力します。
image.png

コード

Option Explicit

Private Sub splitExample()
    Dim lastName As String, firstName As String
    Dim var As Variant

    var = split(Range("A1").Value, " ")
    lastName = var(0)
    firstName = var(1)

    Range("B1").Value = lastName
    Range("C1").Value = firstName
    
End Sub

マクロ実行結果

B1セルに姓、C1セルに名前が入力されました。
image.png

半角スペースと全角スペースの両方に対応させる

条件分岐で半角のときと全角のときで、区切り記号を変えるようにしました。
区切り記号がない場合は、何も出力しません。

Option Explicit

Sub splitExample()
    Dim lastName As String, firstName As String
    Dim var As Variant

    If InStr(Range("A1").Value, " ") > 0 Then
        var = split(Range("A1").Value, " ")
        lastName = var(0)
        firstName = var(1)
    ElseIf InStr(Range("A1").Value, " ") > 0 Then
        var = split(Range("A1").Value, " ")
        lastName = var(0)
        firstName = var(1)
    Else
    End If
        Range("B1").Value = lastName
        Range("C1").Value = firstName
End Sub

マクロ実行結果

全角スペースの場合
image.png
半角スペースの場合
image.png
区切り文字なしの場合
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?