我正在制作一张包含数千个条目的表格。我正在寻找一个公式,它将计算A列中包含B列数据的所有记录。
A列中的某些单元格可以合并,并由B列中的2个条目表示,这两个条目是2个单元格。就像A列中的一个单元格在B列中有2个单元格一样,共有一行。我希望自己能够理解。
我尝试使用像countif一样,但我认为并非如此......
我在下面的链接中附上了一个小例子。
希望有人可以帮助我。
答案 0 :(得分:0)
import {Injectable, Inject} from 'angular2/core';
import {Http, Response, Headers, RequestOptions} from 'angular2/http';
import {Observable} from 'rxjs/Rx';
import {P2} from '../p2/p2.service'; // path to P2
@Injectable(/** Inject P2 here **/)
export class P1 {
private _p2Service: P2
constructor(private http: Http) {
this._p2Service = new P2(this.http);
}
getProcessedP2Data() {
... create your Rx obserwable here, read async data from P2, prcess them, and return obserwable (subscriable) object
}
}
以上计算A不为空且B不为空的行数