有这样一段代码:
Dim f1 As New Filler
f1.SourceTable = DataTables("来源表")
f1.SourceCols = "字段1,字段2,字段3,字段4"
f1.DataTable = DataTables("目标表")
f1.DataCols = "字段1,字段2,字段3,字段4"
f1.ExcludeNullValue = True
f1.Fill()
假设我想将“来源表”中的“字段4” 用某固定“文本”或“数字”替代,填充行数和其他字段一样,不知是否可操作?