Feature Request: Worksheet per item in List
See original GitHub issueI’d like to create one worksheet per item from a list.
For example in case I pass an IEnumerable to the template
template.AddVariable(customers);
and the name of the template worksheet is something like
{{ item.Name }}
the report generator should iterate through the customers list and create one worksheet for every item in the list.
Another approach:
passing a variable data that contains an IEnumerable<Customer> Customers
template.AddVariable(data);
and worksheet with label
{{ Customers.Name }}
should trigger the generation of a single worksheet per customer.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How To Manage Feature Requests [Template included]
The best way to categorize feature requests is by considering how they change the functionality of the product. A feature request either ...
Read more >Feature Request Template: How to Collect User Feedback ...
A feature request template is a standardized form that allows users and customers to submit feature requests for your product.
Read more >How to create the ultimate feature request list in Jira
Within your project you'll then have a Board, which will be the place that you'll be able to view and manage all the...
Read more >How do I write a good feature request?
I've moved your question from the title to the body. It is bad form to write a post without any mention of the...
Read more >Speed up development with a free feature request template
Get a free feature request template to help you gather product feedback throughout development for a fast and smooth process.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I was also having a similar requirement. This is how I ended up doing, I used the same excel template while generating multiple sheets. This way we dont need to rename ranges in our template.
Then use the excel bytes to download as excel,
ExcelReportFromTemplate
Action Result:Hope this helps someone.
Thanks, Abdul
I have long thought that someone would need this feature and need to do it. Unfortunately, this is not yet implemented. I will try to find time in the next couple of weeks and implement it.