Hi. I am working on a timesheet application.
I have employees fill up a time sheet everyday. Each employee enters their ID , and the date. Then they need to enter jobs and times they spent on those jobs. I create 5 fields for potentially 5 different jobs. The employee submits the form once instead of 5 times. That also ensures that the sum of their hours is 8h/day (Simple calculation within the form).
My form creates 1 line with 5 jobs as columns. Some jobs are blank if nothing is entered.
How would I create a table with 1 job per line from that form?
1 job filled up would create 1 line
3 jobs filled up would create 3 lines
....
Thank you !