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.
列の最大日付を見つけようとしています。例えば:
Column A 2011 2010 2010 2009 2013
2013年を見つける関数が欲しいです。
単純に最大値を見つけようとしている場合、Vlookup はやり過ぎです。 =Max(A:A)列Aの最大値を見つけます。
=Max(A:A)
VBA で実行しようとしている場合、関数はApplication.Max(Range("A:A")).
Application.Max(Range("A:A"))