First time here? Check out the Help page!
1 | initial version |
Assuming this is an EnergyPlus output table, I would recommend using the SQL output file and executing a query such as
SELECT Value FROM TabularDataWithStrings WHERE TableName = ...
This could be accomplished with a Python script using the sqlite3 library.