variable = ie.table(index,1).row_values(1)
puts variable

the above syntax returns the values in the row number '1'
similarly we can also get the values of column.

To get the particular value in a cell
table = ie.table(:index,1)
variable = table[1][1].to_s
 The above variable gives the cell value  of rownumber 1 and columnnumber 1
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to