Replies: 2 comments 4 replies
-
The multisheet attribute in jx:each is missing. jx:each(multisheet="sheetnames" ...) data.put("sheetnames", <List with "1", "2", "3", ... "31">); |
Beta Was this translation helpful? Give feedback.
4 replies
-
One thing I forgot to mention: please remove |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, first of all, excellent library, I just found it and I am using it for an internal project at my work.
I am trying to make an excel document with different spreadsheets for all the days of the month, using this format
here's my template:
I was guided by the example provided in the each section.
and I would like to achieve the spreadsheets by date, as shown in the multisheet section
but I can't figure out how to generate it, my information is like this
List<Employees>
Employees
hasList<Employee> cachedEmployees
andString date
and in
Employee
there are all the attributes that are seen in the templateFollowing the example I assumed it would be something like
but obviously it doesn't work, so it generated an excel for each day, it works for me for now, but I would like to know if it is possible to achieve what I mention.
this is my code
thanks and sorry for my bad english :p
Beta Was this translation helpful? Give feedback.
All reactions