I have 3 columns: name, ID, and total count. I want the row containing name and ID to be repeated the number of times of the total count.
Eg.
name1;xxx;1
name2;yyy;2
name3;zzz;3
becoming:
name1;xxx
name2;yyy
name2;yyy
name3;zzz
name3;zzz
name3;zzz
I would really appreciate any help! Thanks.
(Also could try in Access if someone could explain how to do this?)