Hello. I am trying to expand a list of elements in calc, in a list differentiated elements. I want to clone each cell of a column, to three different cells with three different suffixes.
I want this to be produce automatically (by dragging several cells down)
A B
a a_suf1
b a_suf2
c a_suf3
d b_suf1
e b_suf2
f b_suf3
g c_suf1
h c_suf2
I c_suf3
j d_suf1
k d_suf2
l d_suf3
etc
However, the formula B1 = A1&"_suf1", B2 = A1&"_suf2", B3 = A1&"_suf3", B4 = A2&"_suf1"…B6=A2&"_suf3" if dragged skips 2 cells of column A for each iteration.
A B
a a_suf1
b a_suf2
c a_suf3
d d_suf1
e d_suf2
f d_suf3
g g_suf1
h g_suf2
I g_suf3
j j_suf1
k j_suf2
l j_suf3
Can anyone propose a solution to this?