Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Totally excited, I started testing this new reporting excel add-in option in Qlik Saas. When setting up recipients, it is possible to download an example template file. You can fill this with your own data, so it can then be uploaded again in the correct format. However, I get an error while uploading, it the same file as the template file. Only I filled in my own email recipients. Does anyone experience the same issue? Or where can this be caused?
I am getting the same problem as Andre. I have got it too work against a copy of my app but it wont do it on the main app. They are both in shared spaces. I have moved the distribution list section up the code. I have tried adding the recipients in the code directly as described. Nothing seems to work. This seem pretty flakey tech.
Try it without filters:
Users:
LOAD * INLINE [
%Recipient,%Email
André Bento,andre.bento@xxxxx.com
Tomás Pádua,tomas.padua@xxxx.com
];
tag field %Recipient with 'DL_DISTRIBUTION_SVC__recipientName';
tag field %Email with 'DL_DISTRIBUTION_SVC__recipientEmail';
/////
ALSO try it without special characters:
Users:
LOAD * INLINE [
%Recipient,%Email
Andre Bento,andre.bento@xxxxx.com
Tomas Padua,tomas.padua@xxxx.com
];
tag field %Recipient with 'DL_DISTRIBUTION_SVC__recipientName';
tag field %Email with 'DL_DISTRIBUTION_SVC__recipientEmail';
Random question but do we have a keyboard shortcut to insert the tag fields script portion? Right now I just copy and paste so I don't have to go through the recipients route in reporting.