Dear Team,
I have 10 rows of customer information (customer name,address,zip,total spend,organization )
I want to create a single pdf per customer. So in my case I would have 10 seperate pdf file as output.
The output pdf would have the single customer information formatted and designed using the "report tool and render tool". The reason is later I want to send email to individual customers with their details right within alteryx.
In short, (1)take single row (2) output the row as pdf (3)loop again to pick the second row and output as pdf
(4) repeat above untill all 10 rows are output to a pdf
Something like below python code
for i in range(10):
print(df[i])
i=i+1
Should I use iterative macro or it's possible without it as well.
Any pointers and samples appreciated. Thanks in advance for helping.