0

We have a requirement to export data in to excel from table, after export user will enter values in empty cell, that cell value will be added with another cell and it will display in the formula column.

For example:

<table border="1">
  <tr>
    <th>Column 1</th>
    <th>Column 2</th>
    <th>Formula Column</th>
  </tr>
  <tr>
    <td>10</td>
    <td>20</td>
    <td>30</td>
  </tr>
  <tr>
    <td>20</td>
    <td></td>
    <td></td>
  </tr>
</table>

In the above example after exporting, column 1 and column 2 value is empty for some rows. In the excel user will enter the values, after that the formula column should populate the sum.

2

1 Answer 1

1

Please see SheetJS, a JavaScript library to read and write spreadsheets.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.