get data column name at specific ordinal c# code example
Example 1: find a value in list of objects in c#
var item = TextPool.FirstOrDefault(o => o.Name == "test");
if (item != null)
item.value = "Value";
Example 2: change value in excel in python
from xlrd import open_workbook
from xlutils.copy import copy
xl_file = r'D:\path\excel.xls'
rb = open_workbook(xl_file)
wb = copy(rb)
sheet = wb.get_sheet(0)
sheet.write(0,2,'New_Data_For_Cell')
wb.save(xl_file)