In Domino Designer, I would like to export a view to CSV file, with the details as per below:
- Select all document
- In UTF-8
- Include Column Title
I tried to use formula language to at least export it to csv, and save it at the current user's desktop, but it seems like %UserProfile% is not working.
@Command([FileExport];"Comma Separated Value";"C:\Users\%UserProfile%\Desktop\temp.csv")
I have tried to change "%UserProfile%" with Public, and it works, but preferably I wish it could be done using current user profile.
My questions are:
Can I use formula language to code something like this?
Is there any lotusscript similar to my description as above (i.e The CSV file can be exported only by one click?
Thank you in advance.