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.
Excel シートから適切な凡例を取得しようとしています。
SeriesCollection(1).Name
VBA のメソッド。私がやっていることはこのように見えます
ActiveChart.SeriesCollection(1).Name = Range(" some range ").Text
ただし、これにより Type Mismatch のエラーが発生します。問題が何であるかについてのアイデアはありますか?または、どうすればこれを別の方法で行うことができますか?
参照する範囲は 1 つのセルのみですか? いずれにせよ、次のように書くことができます。
ActiveChart.SeriesCollection(1).Name = Range("RangeName").Cells(1, 1).Value