搜索当前行上方的一列字符串,以查看是否已使用当前列字符串。如果没有使用,那么我将在单元格中使用它来使用此代码显示美元金额
=CONCATENATE(C3,"",TEXT(SUMIF($C$3:C102,C3,F$3:F$101),"$0.0"),0)
C列是具有重复值的提供商列表
F列是每个提供商可能有多个条目的费用列表。
我正在尝试在单独的列中创建列表,以显示提供商的总费用,而不会列出重复的提供商
答案 0 :(得分:0)
将公式包装在Countif中,其中范围的第一个单元格是绝对引用,范围的最后一个单元格是相对引用,如下所示,从第3行开始并向下复制:
public class SimpleModel {
private String name;
private int bgColor;
private int bgImage;
public String getName() {
return name;
}
public void setName(final String name) {
this.name = name;
}
public int getBgColor() {
return bgColor;
}
public void setBgColor(@ColorInt final int bgColor) {
this.bgColor = bgColor;
}
public int getBgImage() {
return bgImage;
}
public void setBgImage(@DrawableRes final int bgImage) {
this.bgImage = bgImage;
}
}