import openpyxl, pprint
import pandas as pd
import os
After going through everything
my_list = []
for j in range(2, 8):
my_list.append(sheet1.cell(row = 7, column = j).value)
print(my_list)
I get the following
[1941533, 1002, 0.0005160870301972719, 8523, 1937, 479367.6439999999]
I now want to add each element from my list to excel
for j in range(13,20):
sheet3.cell(row = 22, column = j)
So I want my_list[0] to = row 22 and column 13 in excel and so on up to J