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 的两个不同工作表中有两行。每行有 20 个元素。我需要找到这两行中相应元素的差异的中位数。我希望这个输出只在一个单元格中。我不想在我的结果中添加另一行。
我有:
If Row1 = p1 p2 p3.... p20 If Row2 = q1 q2 q3.... q20
我需要:
result cell = Median of ((p1 - q1), (p2-q2)....(p20-q20))
{=MEDIAN(P1:P20-Q1:Q20)}
这是一个数组公式,您必须使用Ctrl++进行Shift验证Enter
[编辑] 包括下面评论中 brettdj 的建议,你也可以试试这个公式:
{=MEDIAN(Sheet2!A2:T2-Sheet1!A1:T1)}