I have a table with three Columns: Column A: name of Item, Column B: Lowest value of series, Column C: the Highest value of series. enter image description here
What I want to achieve is:
- Generate series of item sequence from lowest number to highest number per row
So Apple 7 9 will yield: "Apple_7", "Apple_8", "Apple_9"
Concatenate/Join such sequence per row into Column D So
Item From Until Result Apple 7 9 "Apple_7, Apple_8, Apple_9" Berry 3 8 "Berry_3, Berry_4, Berry_5, Berry_6, Berry_7, Berry_8" Doing it all using one Arrayformula, so that new row added can be automatically calculated.
Here is example sheet: https://docs.google.com/spreadsheets/d/1R5raKmmt5-aOIorAZGHjv_-fdySKWjCMB_FRQwm1vag/edit#gid=0
I tried in Column D:
arrayformula(textjoin(", ",true,arrayformula(A3:A&"_"&sequence(1,C3:C-B3:B+1,B3:B,1))))
Apparently, the sequence function only take value from Column B and join it in first row.
Any help will be appreciated.