Hi David,
i had created a function onEdit and called the function on editing cell
value.below is my function
function onEdit(event)
{
var rindx = event.source.getActiveCell().getRowIndex(); // Get the active
cell's row index
var cindx = event.source.getActiveCell().getColumnIndex(); // Get the active
cell's column index
var vindx = event.source.getActiveCell().getValue(); // Get the active
cell's current value
Browser.msgBox(rindx );
Browser.msgBox(cindx );
Browser.msgBox(vindx );
var q =
'http://www.example.com/searchresult.php?RowIndex='+<http://www.google.com/search?RowIndex='+>rindx
+ '&ColumnIndex=' + cindx + '&CellValue=' + vindx;
Browser.msgBox(q);
}