I would like to print out only certain cells in an Excel table. The extraction criteria is in a third column and if this criteria is met, I would like to print the information in ninth column.
#-------python code --------- for i in range(len(sh.col_values(8))): if sh.col_values(2).value[i] == "temp": print sh.col_values(8)[i] #---------------------------------
> I would like to print out only certain cells in an Excel table. The > extraction criteria is in a third column and if this criteria is met, > I would like to print the information in ninth column.
> #-------python code --------- > for i in range(len(sh.col_values(8))): > if sh.col_values(2).value[i] == "temp": > print sh.col_values(8)[i] > #---------------------------------
> I would like to print out only certain cells in an Excel table. The
> extraction criteria is in a third column and if this criteria is met,
> I would like to print the information in ninth column.
> #-------python code ---------
> for i in range(len(sh.col_values(8))):
> if sh.col_values(2).value[i] == "temp":
> print sh.col_values(8)[i]
> #---------------------------------