Excel Formula referencing one column, counting variables in another column
正在寻找一个计算多个变量的公式,同时引用不同列中的另一个变量。
我尝试过 countif、countifs 和 sumproduct,但没有成功。
1 | =countif('02'!$F2:$F:147="Y",'02'!H2:H147,"*PAR" or"NR") |
根据下表查找计数 2。
1 2 3 4 5 | column f column h N NR Y NR N PAR Y PAR |
您使用的 COUNTIF() 应该是 COUNTIFS 并且格式不正确。
1 | =COUNTIFS('02'!$F2:$F:147,"Y",'02'!H2:H147,"*PAR") |
要执行 OR 部分,您需要将公式package在 SUM() 中,并将部分package在数组中:
1 | =SUM(COUNTIFS('02'!$F2:$F147,"Y",'02'!H2:H147,{"*PAR","NR"})) |