Data frame looks like this:
ID | Email | Mobile Number | Number of Entries
99 | Example@example.com | 00000000 | 4
Ideally, the expected output is:
99 | Example@example.com | 00000000
99 | Example@example.com | 00000000
99 | Example@example.com | 00000000
99 | Example@example.com | 00000000
Basically, duplicate the rows based on the number of entries with the dimensions being ID, Email, and Mobile Number.
Any pointers?
All help appreciated!
Solved! Go to Solution.
@caltang
Since you are asking, I will just give you a quick sample.
Massive thanks! I did what you did and it worked like a charm. I was wondering if transpose or arrange could do so as well - this is similar to a question asked in the designer core some time ago.
Thanks man! This works too.