Template format :
Lets assume below is my template. I have all the students details together but is there a way i can drop them all together and it will fill in the existing template?
| Template | Fees | Expense | Books | Uniform |
| Student 1 | | | | |
| Student 2 | | | | |
| Student 3 | | | | |
| Student 4 | | | | |
| Student 5 | | | | |
| Student 6 | | | | |
| Student 7 | | | | |
| | | | | |
| 1st input file | | | | |
| Student 1 | 100 | 15 | 35 | 45 |
| | | | | |
| 2nd input file | | | | |
| Student 2 | 100 | 20 | 40 | 35 |
| | | | | |
| 3rd input file | | | | |
| Student 6 | 100 | 25 | 30 | 50 |
| | | | | |
| | | | | |
| Output: | | | | |
| | Fees | Expense | Books | Uniform |
| Student 1 | 100 | 15 | 35 | 45 |
| Student 2 | 100 | 20 | 40 | 35 |
| Student 3 | | | | |
| Student 4 | | | | |
| Student 5 | | | | |
| Student 6 | 100 | 25 | 30 | 50 |
| Student 7 | | | | |