Is there a way to print a table that includes total value of a column in a page
For example:
*Page 1* Name | Salary Gray | 1500 Red | 2000 Total| 3500 *Page 2* Name | Salary Black| 500 White| 2000 Total| 2500
Is there a way to print a table that includes total value of a column in a page
For example:
*Page 1* Name | Salary Gray | 1500 Red | 2000 Total| 3500 *Page 2* Name | Salary Black| 500 White| 2000 Total| 2500
You can do it using JavaScript
. Implement your logic in a function
that sets the value of Total to the sum of the rest. Also, post your code so we have more information about what you do and how you approach the issue.