1
1

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.

ExcelVBAで外字を扱う

Last updated at Posted at 2020-09-02

概要

 Excelの文字コードはUnicodeですが,VBAの文字コードはShift_Jisです。
 なので,外字の判定をどうするかという問題が生じます。
 私はWorksheetFunction.UnicharとWorksheetFunction.Unicodeを使って,コード番号で外字を扱っています。

使いたい外字の文字コードを確認する

 vbaに以下のサブプロシージャを作成します。

vba
Sub printUnicode()
    Debug.Print WorksheetFunction.Unicode(ActiveCell)
End Sub

 そして,任意のセルに外字1文字を入力したら,先ほどのマクロを動かします。
2020-09-02.png
2020-09-02 (1).png

 イミディエイトウインドウが表示されていないときは,「表示」「イミディエイトウインドウ」を選択します。
 ここに入力されている数字が,その外字の文字コード番号です。

文字コードから外字を扱う

 文字コードが分かったら,外字をWorksheetFunction.Unichar(文字コード番号)で扱えるようになります。

 これで入力もできますし

外字入力
Sub inputUnicode()
    Cells(1, 2) = WorksheetFunction.Unichar(10102)
End Sub

2020-09-02 (2).png

 文字判定もできます。

外字判定
Sub checkUnicode()
    Dim blackCircle1 As String
    blackCircle1 = WorksheetFunction.Unichar(10102)
        Dim i As Integer
        For i = 1 To 3
            If InStr(Cells(i, 1), blackCircle1) > 0 Then
                Cells(i, 2) = True
            Else
                Cells(i, 2) = False
            End If
         Next i
End Sub

2020-09-02 (3).png

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?