需要公式来检测 "Different products" 相同的 ID IN EXCEL
Need formula to Detect "Different products" for same ID IN EXCEL
我需要 excel 中的公式来检测例如 1111;链接了三个不同的产品,同时 2222 只链接了“橘子”
这里我留下了我的例子 excel table:
Product ID
Product Name
1111
Apples
1111
Orange
1111
Grapes
2222
Orange
3333
Apples
3333
Orange
3333
Grapes
4444
Orange
希望清楚!
提前致谢。
分享只是为了清楚起见,请参考下图,
• 单元格 C2
中使用的公式
=COUNTIFS($A:$A2,A2,$B:$B2,"<>"&B2)+1
• 单元格 D2
中使用的公式 --> 您也可以使用它或修改它使其看起来有点花哨
="Product ID "&A2&"-Product Type No.-"&COUNTIFS($A:$A2,A2,$B:$B2,"<>"&B2)+1
我需要 excel 中的公式来检测例如 1111;链接了三个不同的产品,同时 2222 只链接了“橘子”
这里我留下了我的例子 excel table:
Product ID | Product Name |
---|---|
1111 | Apples |
1111 | Orange |
1111 | Grapes |
2222 | Orange |
3333 | Apples |
3333 | Orange |
3333 | Grapes |
4444 | Orange |
希望清楚!
提前致谢。
分享只是为了清楚起见,请参考下图,
• 单元格 C2
=COUNTIFS($A:$A2,A2,$B:$B2,"<>"&B2)+1
• 单元格 D2
中使用的公式 --> 您也可以使用它或修改它使其看起来有点花哨
="Product ID "&A2&"-Product Type No.-"&COUNTIFS($A:$A2,A2,$B:$B2,"<>"&B2)+1