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.
次の形式 (mm:ss.sss) で 3 回の結果リストを取得し、最速の 2 回を計算し、それらを平均する必要があります。
すべての支援に感謝します。
この式を使用できます
=AVERAGE(SMALL(A1:A3,{1,2}))
これは、A1:A3 のように 1 つの範囲に 3 つのセルがあることを前提としていますが、必要に応じて SMALL を使用すると、次のように A1、A3、A5 などの 3 つのセルを個別に表示することもできます。
=AVERAGE(SMALL((A1,A3,A5),{1,2}))