Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私がしようとしているのは、VBAを使用してExcel 2007でフォーマットされたセル値を読み取ることです。
たとえば、値が「01/01/2015」のセルがあり、フォーマットするとJan/2015のようになります。「2015 年 1 月 1 日」の代わりに、2015 年 1 月のフォーマットされた値を変数に読み込む方法はありますか?
ありがとうございました
使ってみてください
someVariable = Range("A1").Text
代わりは
someVariable = Range("A1").Value
ここでもっと読むことができます