I have a spreadsheet with IPs, their owner, and their program and their vulnerabilities. So there are duplicate IPs.
I'm trying to write a formula to count unique IPs based on those their owner and program, so I don't have to do it manually for 6 owners and their 6 programs 2 a week. I've looked at sumproduct ans frequency and a few other sources but I can't figure out how to use them in this situation.
DATA SET
Owner - Program - Plugin - IP
Erica - Project 1 - 1234 - 1
Erica - Project 1 - 4321 - 1
Erica - Project 1 - 5421 - 2
Philip - Project 1 - 1237 - 2
Philip - Project 2 - 3289 - 3
Philip - Project 3 - 4321 - 4
Philip - Project 3 - 1234 - 5
Philip - Project 3 - 3245 - 6
Jacob - Project 3 - 1623 - 7
Jacob - Project 2 - 1234 - 8
OUTPUT
Owner - Program - IP
Erica - Project 1 - 2
Philip - Project 1 - 1
Philip - Project 2 - 1
Philip - Project 3 - 3
Jacob - Project 2 - 1
Jacob - Project 3 - 1
Index/Match
? How is your data laid out, some mock data (and expected output) would help. – BruceWayne