JoshuaJohnson2896
JoshuaJohnson2896

Reputation: 33

Repeat a range of values starting at a specifc value without using vba

Using only the formula's provided by excel what i want to do is create a repeating list of values starting from a inputted value that exists in the range.

for example:

enter image description here

In this example I have a list of 4 names, and when someone enters one of the names in the input box in D1 a list of repeating values will appear in the D column starting with "Bob".

I'm not that skilled in using Excel formula's so I'm wondering if this is even possible without using vba

Upvotes: 0

Views: 68

Answers (1)

Abe Gold
Abe Gold

Reputation: 2357

In D2, use:

=IF(INDEX(A:A,MATCH(D1,A:A,0)+1)="",A$2,INDEX(A:A,MATCH(D1,A:A,0)+1))

Then copy down.

enter image description here

Upvotes: 2

Related Questions