Hi All,
I and trying to create a lookup to the Product Number based on the Size, Colour and Product Name. My Product Name is a text label, the Size and Colour are both drop down boxes. I have my spreadsheet with all of the Products with their Name, Size, Colour and the Product Number. I have my gallery with all of my products.

The issue I am having is that I may have the same Product Name where there are just different sizes and colours which means they have a slightly different Product Number and for some reason the formula I'm using is not bring back the Product Number for instances where there may be different sizes and/or colours. This is my formula:
First(Filter(ProductNumbers, ProdSize = SizeDD.Selected.Value && ProdColour = ColourDD.Selected.Value && ProdName = ProductNameLabel.Text)).ProdNumber
I would want the Product Number to change based on what is in the Size and Colour dropdowns.