Offset formula within an array formula?

nlarski

New Member
Joined
May 11, 2017
Messages
17
I'm sure there is a pretty simple answer to my question but I cant seem to figure it out.

I have a list of products by store and their sales. I want to transfer the product from some stores into other stores that are actually selling it well.

Here is the array formula that I have which is returning the largest number of units sold (the best selling store's sales for that particular product)

{=LARGE(IF(SKU=G7,'Data Dump'!$Q$6:$Q$37155),1)}

What I would like to do is return the "best selling" store name instead of the number of units sold which sits 6 columns to the left. In order to do this I tried to put in the Offset function. Excel gives me an error pop up and I cant enter the formula.

<strike></strike>={OFFSET(LARGE(IF(SKU=G7,'Data Dump'!$Q$6:$Q$37155),1),0,-6)}


Does anyone know how to achieve what I'm trying to do? I may be overthinking this one but Ive spent too much time googling and thinking about it for now.


Thanks!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
You can use OFFSET but INDEX is better and easier, e.g.

=INDEX('Data Dump'!$K$6:$K$37155,MATCH(LARGE(IF(SKU=G7,'Data Dump'!$Q$6:$Q$37155),1),IF(SKU=G7,'Data Dump'!$Q$6:$Q$37155),0))

confirmed with CTRL+SHIFT+ENTER

but is there a possibility of ties for the highest value for a specific product?
 
Upvote 0

Forum statistics

Threads
1,223,237
Messages
6,170,928
Members
452,366
Latest member
TePunaBloke

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