Ask Your Question

omarms92's profile - activity

2018-12-07 02:56:15 -0500 received badge  Famous Question (source)
2018-11-22 07:46:58 -0500 received badge  Notable Question (source)
2018-11-14 19:16:55 -0500 received badge  Popular Question (source)
2018-11-13 17:20:21 -0500 answered a question problem with excelpy ,does not save the excels automatically

hi i fixit with

import psspy
import excelpy

x1 = excelpy.workbook()
x1.worksheet_rename('LINEAS', 'Hoja1', overwritesheet=True)
x1.set_active_sheet('LINEAS')

x1.show_alerts(False)
dir(x1)
x1.save('prueba.xlsx')
x1.show_alerts(True)
x1.close()
x1.close_app()
2018-11-13 17:18:26 -0500 commented answer problem with excelpy ,does not save the excels automatically

hi i fixit with import psspy import excelpy x1 = excelpy.workbook() x1.worksheet_rename('LINEAS', 'Hoja1', overwritesheet=True) x1.set_active_sheet('LINEAS') x1.show_alerts(False) dir(x1) x1.save('prueba.xlsx') x1.show_alerts(True) x1.close() x1.close_app()

2018-11-13 17:02:24 -0500 commented answer problem with excelpy ,does not save the excels automatically

thank you, but the code run, in ones pc the excel file is saved in other not, i will try your options, thanks a lot :)

2018-11-13 15:04:45 -0500 asked a question problem with excelpy

when i use the lib excelpy, does not save the excels automatically when i need create more than one, even when i only create one

import psspy import csv import excelpy import psspy import redirect import math import re

x1 = excelpy.workbook() x1.worksheetrename('LINEAS', 'Hoja1', overwritesheet=True) x1.setactive_sheet('LINEAS')

x1.save('prueba.xlsx')

2018-11-13 14:00:35 -0500 asked a question problem with excelpy ,does not save the excels automatically

when i use the lib excelpy, does not save the excels automatically when i need to create more than one, even when i only create one.

import psspy
import excelpy

x1 = excelpy.workbook()
x1.worksheet_rename('LINEAS', 'Hoja1', overwritesheet=True)
x1.set_active_sheet('LINEAS')

x1.save('prueba.xlsx')