...
Expand | ||
---|---|---|
| ||
Getting data is all about making stories map to codes. Coding stories is difficult because it essentially means getting a team to negotiate and create a shared language to see common trends in the conversations they are having. The same idea applies whether you are a medical team dealing with patients or company dealing with customers. Over formalized traditional IT systems often make it difficult for a team to evolve a language to talk about the problems they are seeing. One clever ‘hack’ is to use the practice of putting #hash_tags into notes. Almost all applications support free form text and thus you put hash tags into this text as a simple fast way to ‘code’ data. |
Expand | ||
---|---|---|
| ||
Excel Tables: A Unique FeatureExcel table objects are a powerful feature that simplify the management of tabular data. They allow seamless addition of columns and rows, and automatically update dependent features like PivotTables. When a PivotTable references a table object as its data source, it stays synchronized with any updates to the table. How the Iguana Excel Adapter WorksThe Excel adapter code integrates with Iguana's webservice to efficiently populate Excel tables with data:
Key Advantage: Preserving CustomizationsThe algorithm is designed to preserve existing tables, including any user-added columns. For example, if a user adds custom columns with formulas referencing other columns in the table, these customizations remain intact even when the table is refreshed with new data. This makes the adapter particularly user-friendly, enabling dynamic updates without losing manual enhancements or custom calculations. |
Expand | ||
---|---|---|
| ||
Excel .xlsm files are essentially zipped bundles of XML files. You can unzip them, modify the content programmatically, and zip them back up. They also include a vbaProject.bin file, which stores VBA code. The adapter uses this approach to add my VBA code for the adaptor. |