你直接在c2写公式就行了
if(b2="某个值",a2,"其它")
如果一定要JS,那么在下拉框B列写下编辑结束事件
------------------------------------------
var location = this.options.location;
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col;
var ro = cr.row;
var bl=contentPane.getCellvalue(0,ro,col-1);//前一列的值
var b =this.getValue();
if (b=="已完成"){
contentPane.setCellValue(0,ro,col+1,bl);//对C列赋值
}
else {
contentPane.setCellValue(0,ro,col+1,“其它”);
}