I'm guessing you mean your "second block" (or data range) has more data than your "first block" (data range), both data ranges have a common identifier (store+style+size), which you want to use to pull in data from your 2nd data range to your 1st data range.
If so, then a simple VLOOOKUP will help...
=VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup])
Where...
lookup_value is your identifier
table_array is the cell range of your "second block" (note the lookup_value field should always appear to the far left of this range
col_index_num the number columns to offset from the lookup_value field for the value you want returned
[range_lookup] best just to enter the value FALSE here. That just means it will look for an exact match
while your entering your formula, press F1 to get further help on VLOOKUP's