您好,我想将公式复制到同一列中的连续单元格中
公式是
=IF(L4>27,Complexity!B10,IF(L4>24,Complexity!B9,IF(L4>20,Complexity!B8,IF(L4>17,Complexity!B7,IF(L4>14,Complexity!B6,IF(L4>10,Complexity!B5,IF(L4>7,Complexity!B4,IF(L4>4,Complexity!B3,Complexity!B2))))))))如果我对下面的单元格使用填充句柄,则公式将更改为如下所示
=IF(L5>27,Complexity!B11,IF(L5>24,Complexity!B10,IF(L5>20,Complexity!B9,IF(L5>17,Complexity!B8,IF(L5>14,Complexity!B7,IF(L5>10,Complexity!B6,IF(L5>7,Complexity!B5,IF(L5>4,Complexity!B4,Complexity!B3))))))))
=IF(L6>27,Complexity!B12,IF(L6>24,Complexity!B11,IF(L6>20,Complexity!B10,IF(L6>17,Complexity!B9,IF(L6>14,Complexity!B8,IF(L6>10,Complexity!B7,IF(L6>7,Complexity!B6,IF(L6>4,Complexity!B5,Complexity!B4))))))))
etc..但我想要父公式中的复杂度!b*值
发布于 2015-09-04 20:13:02
您可以使用$来固定列/行。所以是B$10 ..。B$9...在你的例子中。
发布于 2015-09-04 20:15:52
只需使用$ sign修复所有b,如下所示:
=IF(L4>27,Complexity!$B$10,IF(L4>24,Complexity!$B$9,IF(L4>20,Complexity!$B$8,IF(L4>17,Complexity!$B$7,IF(L4>14,Complexity!$B$6,IF(L4>10,Complexity!$B$5,IF(L4>7,Complexity!$B$4,IF(L4>4,Complexity!$B$3,Complexity!$B$2))))))))字母前的$符号固定列,而数字前的$符号固定行。
然后你就可以毫无问题地拖拽它了。
https://stackoverflow.com/questions/32397693
复制相似问题