仅计算唯一日期

时间:2018-06-27 22:14:51

标签: excel excel-formula

我有一个带有两个表的Excel文档。第一个表格是唯一提供商的列表以及每个提供商的访问次数。第二个表中有提供者,服务日期以及它的描述。

表1:

var claims = new List<Claim>
{
    new Claim(ClaimTypes.NameIdentifier, token.userId),
    new Claim(ClaimTypes.Name, token.userName),
    // Here add new Claim(ClaimTypes.Authentication, token.token)
};

var identity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme);
var principal = new ClaimsPrincipal(identity);

await HttpContext.SignInAsync(principal);

表2:

Provider    No of Visits
Hospital1   3

用于计算表1中的值的公式为

Provider    Date of Service    Description
Hospital1   3/6/18             Emergency
Hospital1   3/6/18             Radiology
Hospital1   6/15/18            Clinic

我如何获得它以便仅计算唯一的DOS?表1的访问次数应从2而不是3列出。

1 个答案:

答案 0 :(得分:2)

尝试一下,

=SUMPRODUCT((Table2[Provider]=[@Provider])/(COUNTIFS(Table2[Date of], Table2[Date of], Table2[Provider], [@Provider])+(Table2[Provider]<>[@Provider])))

enter image description here