So Im looking for a formula to figure out if my numbers are duplicates in column a and then check a 2nd condition to categorize them.
An order can be one of three conditions. Pure CSP, Pure ACT and a mix of the two.
Here's a sample of data and expected output in column C:
Need to check the entire range for duplicates and return a value in C that is based on the condition of whats in column b. Can't seem to figure out an easy way to do this.
Speed is a concern as my data set will likely have 20-30k rows.
<tbody>
</tbody>
An order can be one of three conditions. Pure CSP, Pure ACT and a mix of the two.
Here's a sample of data and expected output in column C:
Need to check the entire range for duplicates and return a value in C that is based on the condition of whats in column b. Can't seem to figure out an easy way to do this.
Speed is a concern as my data set will likely have 20-30k rows.
Duplicate | Condition | Result |
676278324 | CSP | CSP |
676278118 | ACT | ACT |
676278118 | ACT | ACT |
676278118 | ACT | ACT |
676278118 | ACT | ACT |
676207794 | CSP | MIX |
676207794 | CSP | MIX |
676207794 | ACT | MIX |
676270032 | CSP | CSP |
676268309 | CSP | CSP |
676272582 | CSP | CSP |
676280866 | ACT | MIX |
676280866 | ACT | MIX |
676280866 | CSP | MIX |
<tbody>
</tbody>