MW211 EXIT

devlog
ExcelVBA/.NumberFormatの違い
2017年11月14日
「.NumberFormatLocal」の方が、通常の画面入力(「セルの書式設定」)に近い。
  ┌──────────────────┬──────────────────┐
  │         .NumberFormatLocal         │           .NumberFormat            │
  ├──────────────────┼──────────────────┤
  │標準書式(書式なし)の指定            │標準書式(書式なし)の指定            │
  │.NumberFormatLocal = "G/標準"       │.NumberFormat = "General"           │
  ├──────────────────┼──────────────────┤
  │文字色の指定                        │文字色の指定                        │
  │.NumberFormatLocal = "0;[赤]-0"     │.NumberFormat = "0;[Red]-0"         │
  ├──────────────────┼──────────────────┤
  │円マークのの指定                    │文字色の指定                        │
  │.NumberFormatLocal = "\0"           │.NumberFormat = """\""0"            │
  └──────────────────┴──────────────────┘
「.NumberFormatLocal」を使った方がいいのでは?
分類:ExcelVBA