|
教えて下さい。
A列に漢字
B列に結果
を表示しています。
漢字の項目のひらがなよみを全角かなにはできたのですが
半角カナを取得する場合の方法を教えて下さい。
以上宜しくお願いします。
Option Explicit
Sub henkan1()
'*****************************************************
'* 変換処理 漢字⇒ひらがな
'*
'*****************************************************
Dim strPhoText As String
Dim LastRow As Long
Dim data As String
Dim i As Long
Dim j As Integer
LastRow = Cells(Rows.Count, 1).End(xlUp).Row 'A列対象最終行取得
For i = 1 To LastRow
data = Cells(i, 1)
strPhoText = Application.GetPhonetic(data)
j = 2
While strPhoText <> ""
Cells(i, j) = strPhoText
strPhoText = Application.GetPhonetic()
j = j + 1
Wend
Next
End Sub
|
|