Securing Spreadsheet Data
Excel is a wonderfully powerful tool. However, it does not make things easy when you want to save data outside of a workbook. For instance, suppose you have a multi-sheet workbook which consolidates the department costs on a summary sheet and you want to save this consolidated data as a CSV file. The summary sheet might look a bit like this:-
This data will need to be reformatted before it can be saved as a usable CSV file. The headings need to be removed, the data aligned with the left column and then the Excel sheet can be manually saved as a CSV file. The user will then be prompted to confirm that they accept loss of formatting and once saved, they must remember that the original file format needs to be restored. Of course this can be coded into a VBA macro if the user is familiar with using VBA although that will create another layer of worksheet maintenance.
The PersisTables toolkit allows any user familiar with the use of Excel formulae to easily modify any existing spreadsheet to allow any selected data to be saved. Simply adding a couple of formulae to the sheet which will not affect the functionality of the sheet and the data can be automatically and simply saved.
The TKTable_Create() function captures data from a range of cells on the Excel sheet and creates a ‘Handle’ to this data which can then be used in other toolkit functions. In this particular case the handle will be used when the data is saved.
Once the data has been captured in a Table, the Table can be saved using the TKTable_Save() function. The Excel function wizard can be used to select the _Save() function and enter the function parameters. Each field is described in the wizard along with an indication if it is optional or required. The function wizard is a useful tool to assist in understanding how to use the various toolkit functions.
And that is all that is required to create a CSV file using the PersisTables toolkit. Of course this is just a simple example and will cause the file to be updated every time the sheet is calculated. Simple changes can be made using Excel to make it more robust; for instance, a guard can be set around the TKTable_Save() function so that it only is saved when the guard cell is set to TRUE. In the example below cell F5 is the guard cell.
Copyright © 2020 Persis Solutions Limited