使用Python将数据写入Excel文件,并将文本保存在精确的单元格中。

huangapple go评论107阅读模式
英文:

Write data into excel files using python and save text in exact cells

问题

我想要问一下,我如何将字符串写入Excel文件以在输出Excel中看到计算结果。

示例:

我想在列L中的单元格L6中放入这个字符串:=K6-L2+L5,并将其迭代到如下图片所示的整个表格中:

使用Python将数据写入Excel文件,并将文本保存在精确的单元格中。

这些单元格中的逻辑如下:

  1. L6 = K6 - L2 + L5
  2. M6 = L6 - M2 + M5
  3. N6 = M6 - N2 + N5
  4. O6 = N6 - O2 + O5

并且应该在所有具有类型E的列中都存在。

我尝试过这样做,但我的代码不会对文件进行任何更改。

  1. import openpyxl
  2. wb = openpyxl.load_workbook(filename='newfile.xlsx')
  3. ws = wb.worksheets[0]
  4. sb = [i for i in range(6,len(out),5)] #E cells
  5. total = [i for i in range(2,len(out),5)]#A cells
  6. dvl = [i for i in range(5,len(out),5)]#D cells
  7. columns_names = ['K','L','M','N','O','P','R','S','T','U','V','W','X','Y','Z','AA','AB']
  8. colNr = len(columns_names)
  9. for i in sb:
  10. ws[f'K{i}'] = f'=G{i}';
  11. for i in range(0,len(sb)):
  12. for cellnr in range(0,colNr):
  13. try:
  14. ws[f'{columns_names[cellnr+1]}{sb[i]}'] = f'{columns_names[cellnr]}{sb[i]} - {columns_names[cellnr+1]}{total[i]} + {columns_names[cellnr+1]}{dvl[i]}';
  15. except:
  16. pass
  17. wb.save(filename='test.xlsx')

以下是数据:

  1. 类型 2023/07 2023/08 2023/09 2023/10 2023/11 2023/12 2024/01 2024/02 2024/03 2024/04 2024/05 2024/06 2024/07 2024/08 2024/09 2024/10 2024/11 2024/12
  2. A 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
  3. B 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  4. C 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
  5. D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  6. E 127 124 121 118 115 112 109 106 103 100 97 94 91 88 85 82 79 76
  7. A 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  8. B 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  9. C 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  10. D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  11. E 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633
  12. A 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
  13. B 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  14. C 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
  15. D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  16. E 1637 1632 1627 1622 1617 1612 1607 1602 1597 1592 1587 1582 1577 1572 1567 1562 1557 1552
  17. A 1 49 49 61 37 37 37 25 37 25 25 25 49 49 37 49 37 13
  18. B 0 48 48 60 36 36 36 24 36 24 24 24 48 48 36 48 36 12
  19. C 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  20. D 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  21. E 1023 974 925 864 827 790 753 728 691 666 641 616 567 518 481 432 395 382
英文:

I want to ask how I can write into an Excel file string to see the calculation in output Excel.

example:

I would like to have in column L in cell L6 this string: =K6-L2+L5 and iterate it through the whole table as it is in the picture below:

使用Python将数据写入Excel文件,并将文本保存在精确的单元格中。

The logic in those cells is like that:

  1. L6 = K6 - L2 + L5
  2. M6 = L6 - M2 + M5
  3. N6 = M6 - N2 + N5
  4. O6 = N6 - O2 + O5

and it should be in every column that has a type E.

I've tried like that but my code does not create any changes in the file.

  1. import openpyxl
  2. wb = openpyxl.load_workbook(filename='newfile.xlsx')
  3. ws = wb.worksheets[0]
  4. sb = [i for i in range(6,len(out),5)] #E cells
  5. total = [i for i in range(2,len(out),5)]#A cells
  6. dvl = [i for i in range(5,len(out),5)]#D cells
  7. columns_names = ['K','L','M','N','O','P','R','S','T','U','V','W','X','Y','Z','AA','AB']
  8. colNr = len(columns_names)
  9. for i in sb:
  10. ws[f'K{i}'] = f'=G{i}'
  11. for i in range(0,len(sb)):
  12. for cellnr in range(0,colNr):
  13. try:
  14. ws[f'{columns_names[cellnr+1]}{sb[i]}'] = f'={columns_names[cellnr]}{sb[i]} - {columns_names[cellnr+1]}{total[i]} + {columns_names[cellnr+1]}{dvl[i]}'
  15. except:
  16. pass
  17. wb.save(filename='test.xlsx')

Here are the data:

  1. Type 2023/07 2023/08 2023/09 2023/10 2023/11 2023/12 2024/01 2024/02 2024/03 2024/04 2024/05 2024/06 2024/07 2024/08 2024/09 2024/10 2024/11 2024/12
  2. A 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
  3. B 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  4. C 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
  5. D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  6. E 127 124 121 118 115 112 109 106 103 100 97 94 91 88 85 82 79 76
  7. A 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  8. B 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  9. C 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  10. D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  11. E 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633 3633
  12. A 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
  13. B 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  14. C 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
  15. D 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  16. E 1637 1632 1627 1622 1617 1612 1607 1602 1597 1592 1587 1582 1577 1572 1567 1562 1557 1552
  17. A 1 49 49 61 37 37 37 25 37 25 25 25 49 49 37 49 37 13
  18. B 0 48 48 60 36 36 36 24 36 24 24 24 48 48 36 48 36 12
  19. C 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
  20. D 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  21. E 1023 974 925 864 827 790 753 728 691 666 641 616 567 518 481 432 395 382

答案1

得分: 1

你可以使用Openpyxl翻译器来复制/更新整行中的公式。<br>
在单元格L6中插入初始公式

  1. =K6-L2+L5

然后在循环中使用该公式来更新其余的单元格;

示例代码

  1. import openpyxl
  2. from openpyxl.formula.translate import Translator
  3. from openpyxl.utils.cell import get_column_letter as gcl
  4. from openpyxl.utils.cell import column_index_from_string as cifs
  5. wb = openpyxl.load_workbook(filename='foo.xlsx')
  6. ws = wb['Sheet1']
  7. orig_formula = "=K6-L2+L5" # L是列10
  8. start_col = 'L'
  9. row = 6
  10. ### 初始单元格公式('L6')
  11. orig_cell = f'{start_col}{row}'
  12. ### 复制范围从列L开始
  13. rng_start = cifs(start_col)
  14. ### 使用Openpyxl翻译器更新第6、11、16、21行中的所有单元格的公式
  15. ### 循环插入每一列中的每一行
  16. for col in range(rng_start, ws.max_column + 1):
  17. for cur_row in range(6, ws.max_row+1, 5):
  18. dst_cell = f"{gcl(col)}{cur_row}"
  19. ws[dst_cell] = Translator(orig_formula, origin=orig_cell).translate_formula(dst_cell)
  20. wb.save('foo_out.xlsx')
英文:

You can use the Openpyxl translator to copy/update the formula across the row.<br>
Insert the initial formula

  1. =K6-L2+L5

into cell L6 then use that in a loop to update the rest;

Sample Code

  1. import openpyxl
  2. from openpyxl.formula.translate import Translator
  3. from openpyxl.utils.cell import get_column_letter as gcl
  4. from openpyxl.utils.cell import column_index_from_string as cifs
  5. wb = openpyxl.load_workbook(filename=&#39;foo.xlsx&#39;)
  6. ws = wb[&#39;Sheet1&#39;]
  7. orig_formula = &quot;=K6-L2+L5&quot; # L is col 10
  8. start_col = &#39;L&#39;
  9. row = 6
  10. ### Initial cell formula (&#39;L6&#39;)
  11. orig_cell = f&#39;{start_col}{row}&#39;
  12. ### Copy range starts at column L
  13. rng_start = cifs(start_col)
  14. ### Use the Openpyxl Translator to update all the cells in row 6, 11, 16, 21 with the formula
  15. ### Loop inserts into each row per column
  16. for col in range(rng_start, ws.max_column + 1):
  17. for cur_row in range(6, ws.max_row+1, 5):
  18. dst_cell = f&quot;{gcl(col)}{cur_row}&quot;
  19. ws[dst_cell] = Translator(orig_formula, origin=orig_cell).translate_formula(dst_cell)
  20. wb.save(&#39;foo_out.xlsx&#39;)

huangapple
  • 本文由 发表于 2023年7月20日 21:10:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/76730270.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定