特定日期右4个单元格的SUM单元格

时间:2019-02-13 13:21:58

标签: excel-formula

我有一个分类帐,我想对任何特定日期右4个单元格的单元格求和。

例如,我想对所有单元格中所有的数字求和,即19年2月1日右4个空格

enter image description here

非常感谢, 科姆

2 个答案:

答案 0 :(得分:1)

一个简单的SUMIF可以做到:

TMyCustomEdit = class(TCustomEdit)
private
  procedure EMSetReadOnly        (var Message: TMessage);      message 
end; 

procedure TMyCustomEdit.EMSetReadOnly (var Message: TMessage);
begin
  inherited;
  font.Color := clred;
end;

关键是偏移相同大小范围。

答案 1 :(得分:0)

还可以:

=IFERROR(VLOOKUP($B$29,A2:E23,5,FALSE),0)+IFERROR(VLOOKUP($B$29,G2:K28,5,FALSE),0)+IFERROR(VLOOKUP($B$29,M2:Q26,5,FALSE),0)

在B29处导入您想要求和的日期(见图片)

enter image description here