start_col = 0
start_row = 0
temp = {}
getInfo = pd.read_excel(input_file_path, sheet_name="H28LRV100 Freq_Plan", dtype=str, keep_default_na=False)
for i in getInfo.index:
for j in range(len(getInfo.loc[i].values)):
if (getInfo.loc[i].values[j] == 'Macro Info'):
start_col = i+2
# print(getInfo.loc[i].values[j])
x = pd.DataFrame(getInfo.iloc[start_col:, ])