在销售单明细表加入一列 员工姓名,然后在Datacolchanged事件写入代码。
If e.DataCol.Name = "送货人" OrElse e.DataCol.Name = "业务员" Then If e.DataRow.IsNull("送货人") Then e.DataRow("员工姓名") = e.DataRow("送货人") Else If e.DataRow.IsNull("业务员") Then e.DataRow("员工姓名") = e.DataRow("业务员") End If End If