=if(and(a1>=9000200000,9000500000<=b1),"(Product type)","")
This will say if a number is in this range including the minimum and max then return product type if it's one product type
Okay, 1st of all sort your worksheet (Sheet1) with
your 'Start Range', 'End Range', and 'Product Types'
in ascending order based on 'Start Range'.
Next, suppose that your other worksheet (Sheet2)
has its 'Range Value' in cell Sheet2!A1. Just
enter the array formula,
{=VLOOKUP(Sheet2!A1,Sheet1!A:C,{2,3})},
into cells Sheet2!B1:C1.
Note: This is an array formula which must be
entered using the Control+Shift+Enter key
combination. The outermost braces, {}, are not
entered by you -- they're supplied by Excel in
recognition of a properly entered array formula.
Next, enter the formula,
=IF(ISNA(B1),"",IF(A1<=B1,C1,"")), into
the Sheet2!D1. Finally, hide columns Sheet2!B:C.