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"))