I have excel sheet with N+1 rows where Column A has unique id N.
I need to duplicate each row so that below a row N there will be three new rows with unique-ids N-b, N-c, N-d
e.g. sample input rows:
id1 data here
id2 data2 here
e.g. sample output:
id1 data here
id1-b data here
id1-c data here
id1-d data here
id2 data2 here
id2-b data2 here
id2-c data2 here
id2-d data2 here