Generating a List based on enterie Totals

SuperFlySi

New Member
Joined
May 30, 2018
Messages
2
After a solution to a problem I'm having with generating a list that is populated with entries that are defined from a separate table.

So I need to generate a list that looks like this
North
East
South
South
South
South
South
West
West

From a table that is made up of values for each entire like this


North
1
East
2
South
4
West
2
Any help would be appreciated, quite a novice when it comes to Excel tbh!

Simon

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
A
B
C
D
1
North
1​
List
2
East
2​
North
3
South
4​
East
4
West
2​
East
5
South
6
South
7
South
8
South
9
West
10
West
Sheet: Sheet65

Array formula in cell D2:

=INDEX($A$1:$A$4,MATCH(FALSE, COUNTIF($D$1:D1,$A$1:$A$4)=$B$1:$B$4,0))
 
Upvote 0
This is awesome, I've been at this for Hrs with no Joy. Thanks very much Oscar!

Just need to figure out how to get it to populate a table based on table title :)
 
Upvote 0

Forum statistics

Threads
1,213,551
Messages
6,114,266
Members
448,558
Latest member
aivin

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