Excel VBA質問箱 IV

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

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


36667 / 76732 ←次へ | 前へ→

【45243】Re:小数点以下の桁数 NumberFormatLocal?
発言  Kein  - 06/12/16(土) 15:39 -

引用なし
パスワード
   Sub 小数点桁数整理()
  Dim C As Range
  Dim Pt As Integer, Nm As Integer
 
  On Error GoTo ELine
  For Each C In Range("I:I").SpecialCells(3, 1)
   Pt = InStr(1, C.Value, ".")
   If Pt > 0 Then
     Nm = Len(C.Value) - Pt + 1
     If Nm > 4 Then Nm = 4
     C.Offset(, 2).Resize(, 10) _
    .NumberFormat = "0." & String(Nm, "0")
   End If
  Next
  Exit Sub
ELine:
  MsgBox "I列に数値を入力したセルがありません", 48
End Sub

とすれば、コードを整理できますね。
0 hits

【45177】小数点以下の桁数 NumberFormatLocal? ℃素人 06/12/14(木) 13:41 質問
【45180】Re:小数点以下の桁数 NumberFormatLocal? Kein 06/12/14(木) 16:31 回答
【45197】Re:小数点以下の桁数 NumberFormatLocal? ℃素人 06/12/15(金) 10:09 質問
【45200】Re:小数点以下の桁数 NumberFormatLocal? ℃素人 06/12/15(金) 10:30 質問
【45243】Re:小数点以下の桁数 NumberFormatLocal? Kein 06/12/16(土) 15:39 発言
【45283】Re:小数点以下の桁数 NumberFormatLocal? ℃素人 06/12/18(月) 9:46 お礼

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