Python Forum
openpyxl insert list with formulas
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
openpyxl insert list with formulas
#2
Okey i rewrite my code and its work:
wb = Workbook()
ws = wb.active
listf = [[1,1,1,1], [2,2,2,2], [3,3,3,3]]


def col_writer(row_number, column_number, lst):
    for c_index, col in enumerate(lst, start=4):
        for r_index, row in enumerate(col, start=6):
            ws.cell(r_index, c_index, row)
        c = get_column_letter(c_index)  # column letter
        calc_lst = [f'=СРЗНАЧ({c}6:{c}35)', f'=СРЗНАЧ({c}6:{c}35)', f'=СТАНДОТКЛОН({c}6:{c}35)', f'=СТАНДОТКЛОН({c}6:{c}35)']
        for r_index, formula in enumerate(calc_lst, start=37):
            ws.cell(r_index, c_index, formula).number_format = numbers.FORMAT_GENERAL
    return wb.save('sample.xlsx')


col_writer(1,1,listf)
But my formulas work only if i open this xlsx file and double click to cell with formula, maybeanyone know how to fix it?
Reply


Messages In This Thread
openpyxl insert list with formulas - by Irv1n - Sep-15-2021, 02:04 PM
RE: openpyxl insert list with formulas - by Irv1n - Sep-16-2021, 08:10 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Updating formulas in Excel - best solution MasterOfDestr 4 860 Mar-11-2024, 01:02 PM
Last Post: MasterOfDestr
  plotting based on the results of mathematical formulas Timur 1 438 Feb-08-2024, 07:22 PM
Last Post: Gribouillis
  openpyxl insert picture problem cools0607 2 1,898 May-03-2023, 06:48 AM
Last Post: cools0607
  store all variable values into list and insert to sql_summary table mg24 3 1,255 Sep-28-2022, 09:13 AM
Last Post: Larz60+
  Help with a query - to show possible formulas Yanos 1 1,838 Nov-02-2020, 12:18 AM
Last Post: jefsummers
  How to ignore formulas when reading excel file SriMekala 3 6,691 Aug-16-2019, 04:04 PM
Last Post: buran
  python 3 math formulas where to use () Python101 1 2,381 Jun-09-2019, 09:54 PM
Last Post: micseydel
  how to insert list into database zubair 2 10,083 Feb-05-2019, 12:16 PM
Last Post: rajesh1997
  Insert list in particular column! Help! vndywarhol 0 2,548 Sep-17-2018, 11:14 PM
Last Post: vndywarhol
  insert list into sqlite3 mepyyeti 3 13,950 Jan-15-2018, 06:35 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020