Classifications

2022

Board Regular
Joined
Jun 5, 2022
Messages
74
Office Version
  1. 2016
Platform
  1. Windows
I have a spreadsheet where the classifications of some products are incorrect.

I've re-created a simple example below.

Context:

Column A has a list of Supermarkets that supply products.

Column B has the ID for those products.

Column C has the product description.

Column D has the classification.

In this instance, there are two products with multiple classifications.

In row 5, the classification for the Apple (product ID 1) is 'Vegetable' but it should only be fruit!

In row 7, the classification for the Kale (product ID 3) is 'Fruit' but it should only be Vegetable!

The real data has thousands of rows with instances like this, where an ID has multiple classifications, when each ID should only have ONE classification (and there are about a dozen classifications).

Is there a quick way to identify all the instances in the table where the ID column has MULTIPLE classifications in column D, but also find out what those multiple classifications are?

Grocery StoreIDProductClassification
Kroger
1​
AppleFruit
Tesco
2​
PearFruit
Boots
3​
KaleVegetable
Costco
1​
AppleVegetable
Carrefour
2​
PearFruit
Walmart
3​
KaleFruit
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
A macro could be designed to tell you if any product has multiple classifications but has no way of knowing which of the multiple classifications is the correct one unless you tell it. The only way I can think of doing that is to have a separate sheet which lists all the products in one column and the corresponding correct classification in the adjacent column. In this way, all the products and their classification in your data sheet can be compared to the list in the other sheet and if a product has a wrong classification, the correct one can be used to replace it. If this would work for you, it would be easier to help if you could use the XL2BB add-in (icon in the menu) to attach a screenshot (not a picture) of your two sheets. Alternately, you could upload a copy of your file to a free site such as www.box.com or www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. Explain in detail what you want to do referring to specific cells, rows, columns and sheets using a few examples from your data (de-sensitized if necessary).
 
Upvote 0
Thanks for your response, @mumps

I don’t need to identify the correct classifications, at this stage.

I just need to identify IDs that are listed multiple times with a classification that’s different.

So if 1 was listed multiple times in the data, but the classification was always ‘fruit’ that would be fine.

But if 1 was listed multiple times, but it had a ‘fruit’ classification in one row, then a ‘veg’ classification in another row, then a ‘pizza’ classification in another row, I’d want to filter for instances like that.

If 3 was listed over a thousand times in the data, but the classification was always ‘vegetable’ then I’d ignore that, because I’d know that all the supermarkets supplying it are indeed supplying a vegetable (kale).

Is that possible?

And would you still need me to upload a file ?

Thank you in advance.
 
Upvote 0
And would you still need me to upload a file ?
It would make it easier to test a possible solution. How do you want to identify IDs that are listed multiple times? Do you want to highlight them? Please clarify in detail.
 
Upvote 0
It would make it easier to test a possible solution. How do you want to identify IDs that are listed multiple times? Do you want to highlight them? Please clarify in detail.
I wanted to just filter by the IDs where they have multiple incorrect classifications.

But highlighting them would work, as well, as then one can filter by colour.

Ok, I’ll upload a file tomorrow, as I’m using a mobile phone, at the moment. Thanks for your suggestions, so far!
 
Upvote 0
sounds like you have rules for IDS and classifications already? or am I missing something?

Do you have a list of unique IDs and their default correct classification? If you do, couldn't you just create helper columns and look up against this data set? and then filter?

=IF(D2=XLOOKUP(B2,G:G,H:H,"not found"),"correct","incorrect")

abcdefgh
Grocery StoreIDProductClassificationCorrect or not?IDClassification
Kroger1AppleFruitcorrect
1​
Fruit
Tesco2PearFruitcorrect
2​
Fruit
Boots3KaleVegetablecorrect
3​
Vegetable
Costco1AppleVegetableincorrect
Carrefour2PearFruitcorrect
Walmart3KaleFruitincorrect
 
Upvote 0
That’s a good question.

I don’t have a list of all the correct classifications, yet. But I want to identify the rows of data where IDs have more than one classification, at the moment, as they’re likely to cause issues with the output, because they have multiple classifications…..
 
Upvote 0
Actually, I’ve thought of a solution!

If you put in a formula in column H to check if the IDs in different rows are consecutive ie put this in column H =if(B3=B2,”Consecutive”,””)

then add this to column I ie =IF(H2="","",IF(AND(H2="CONSECUTIVE",D2=D3),"Ok","Not ok"))

You can then filter by everything that's not ok and you'll have your list of IDs which have multiple classifications (it won't return all rows with the different classifications, but it at least identifies the problematic IDs).
 
Upvote 0
Here's the data I tested it with

Grocery StoreIDProductClassification
Kroger
1​
AppleFruit
Costco
1​
AppleVegetable
Tesco
2​
PearFruit
Carrefour
2​
PearFruit
Boots
3​
KaleVegetable
Walmart
3​
KaleFruit
Carrefour
4​
BananaFruit
Tesco
4​
BananaFruit
 
Upvote 0
You have to sort the IDs into ascending order before you do the consecutive column checks, though!
 
Upvote 0

Forum statistics

Threads
1,215,125
Messages
6,123,195
Members
449,090
Latest member
bes000

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top