I have a single row with value for every column filled. Now I want to extrapolate the rows into like 1000 rows with just change in couple of columns, like timestamp and value.
Is there a transformation that can do this? Or can you please suggest me a way to do it?
My intention is to have one input row, but output to 1000 rows or so.
Is that a cartesian product, a join operation with no matching column ?
then add a fake column in both table with a value at 1 and make the join on it.
Is that what you are looking for ?
Please find the attached excel which has one row of data, which I would like to extrapolate to like 1000 rows with different timestamp(current date + n …where n is like a variable runs from 1 to 1000). The excel I attached has source and target I am looking for.CommunityExample.xlsx (43.0 KB)
One way is to use a fake (dummy) column to merge two tables, as suggested by @cvo.
The other way is to generate extrapolated rows and use Peek to bring the original values into the extrapolated rows.