Hello,
I have a table similar to the sample shown below. It is a larger table but the representation below captures the information layout in it:
Value Group_Num
| Resistor | 10 |
| Ammeter | 20 |
| Inductor | 30 |
| Resistor | 30 |
| Capacitor | 40 |
| Resistor | 20 |
| Resistor | 10 |
| Inductor | 30 |
Resistor should have Group_Num of 10 but there are instances where the value is set as 20 or 30. How can I clean my data such that I can replace "Resistor-20" and 'Resistor-30' with "Resistor-10"? Since it is a large dataset, the resistor in column A (or any value actually) could have multiple values in column B. But the correct combination is:
Resistor-10
Ammeter-20
Inductor-30
Capacitor-40.
How can I find the incorrect combinations and correct the values in Column Group-Num?
I tried the 'Filter' tool to extract all 'Resistor-10' combinations. For the values that didn't get filtered out (Filter 'F') how can I compare the Filtered vs Unfiltered parts to see if 'Resistor-20' or 'Resistor-30' combinations exist and suitably replace the '20' and '30' with '10'?
Thanks