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 が必要です。例:
-4% -6% 2% 0.34% 4% 2% 1% -0.50% 3% -1% 3% -1%
上の行の最高値が 2% であることがわかります。私が得意としていたことは、単純に次の行を 1% 単位で教えてくれることです。次に、次の行については、中央の行の最高値が 4% であるため、3% を伝えるために Excel が必要です。
=INDEX(A2:D2,1,MATCH(MAX(A1:D1),A1:D1,FALSE))
裏返しに、MAX 関数は行の最大値を返します。MATCH 関数は、その最大値の位置を返します。INDEX 関数は、次の行から同じ位置を返します。