while writing an algorithm dealing with excel data
if we want to compare each cell in a row we write
- foreach row
- foreach cell in a row
- jf ( cell.value > 100 )
but if we dont want to compare each cell in the row but only the cells of a particular collumn
then do we write like this ?
- foreach row
- if ( particular_collumn.cell.value > 100 )
or is there a better way to express this ?