I have a range in excel that I need to sort excel file according to ID column. The data will always range from Column A1 to Column A[row_count]. I tried to use exceljs module for this operation but I didn't find any sort function. How to implement sorting programmatically?
Here is my excel file content.
- ID | Applicant | Status | Comment
- 3224 |Armin Barrywater |In Review |Underwriter is out until next week.
- 3244 |Georgi Angelchov |New |
- 3257 |Imelda Sanchez |New |
- 3223 |Jack Banner |Approved |
- 3226 |Perry Kane |On Hold |Waiting on paperwork from customer.
- 3225 |Shiela Donahue |In Review |
- 3235 |Xavier Fannello |New |
It is not my answer (I have not tested), I found one in the following link:
https://github.com/guyonroche/exceljs/issues/363#issuecomment-435692059