I have stored a list of snowflake SQL queries in an excel. Attached a sample format but the original excel has more than 50 rows.

I have written a python code to read and execute these queries but the output is not as i was expecting. The intention here is to read the excel and execute the query from the 'query' column and save the query result in an CSV with the file name mentioned in the 'Scenario' column from the excel.
The python code i have written executes and creates different files in the output path but all the CSV file is having the result of last query, i.e the customer_count.csv file also has the same data of customer_attribute.csv
If my excel has 50 different scenarios, it creates 50 different CSV files but the data inside all these files are the result of the 50th Query
Below is my code and i'm not sure where its going wrong. Could someone help me out here please
from EXCEL_CONNECTION import *
from SNOWFLAKE_CONNECTION import *
import pandas
import openpyxl
wb = openpyxl.load_workbook("QUERY.xlsx")
ws = wb.get_sheet_by_name('Sheet1')
cur = ctx.cursor()
for col in ws.iter_rows(min_row=2, min_col=2, max_col=2):
for cell2 in col:
df1 = (cell2.value)
for row in ws.iter_rows(min_row=2, min_col=3, max_col=3):
for cell in row:
cur.execute(cell.value)
df = cur.fetch_pandas_all()
df.to_csv(r"target path" + df1 + r".csv")