Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


52735 / 76732 ←次へ | 前へ→

【28828】Re:文字列の取得
回答  だるま WEB  - 05/9/15(木) 19:56 -

引用なし
パスワード
   こんな感じでいかがでしょうか。^d^

Sub test()
  Dim myRange As Range
  Dim myCell As Range
  Dim V As Variant
  
  Set myRange = Range("A1", Range("A65536").End(xlUp))
  
  For Each myCell In myRange.Cells
    V = Split(myCell.Value, "*")
    If UBound(V) >= 1 Then
      myCell.Offset(, 1).Value = V(0)
    End If
  Next
  
  Set myCell = Nothing
  Set myRange = Nothing
End Sub
1 hits

【28826】文字列の取得 ZMAN 05/9/15(木) 19:14 質問
【28828】Re:文字列の取得 だるま 05/9/15(木) 19:56 回答
【28829】Re:文字列の取得 Hirofumi 05/9/15(木) 20:03 回答
【28830】Re:文字列の取得 ponpon 05/9/15(木) 20:07 発言
【28845】Re:文字列の取得 ZMAN 05/9/16(金) 8:30 お礼

52735 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free