1

I have a list of users and a value that denotes how many times I want to return the user's name.

enter image description here

How do I set up a formula that helps me output this?

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124
averageUsername123
  • 725
  • 2
  • 10
  • 22

1 Answers1

2

try:

=INDEX(QUERY(FLATTEN(IFERROR(SPLIT(REPT(A2:A&"×"; B2:B); "×"))); 
 "where Col1 is not null"; ))
player0
  • 124,011
  • 12
  • 67
  • 124