如何将数据添加到模板列(从),如果交易列O值为**“从”,并且如果交易列O值为“到”**,则它将与模板列(到)分离
请帮助,我不知道如何代码程序.希望能帮助我一些.谢谢
Sheets("Transaction").Select
If Cells(lr, 17).Value = "From" Then
Range(Cells(2, 18), Cells(lr, 18)).Select
Selection.SpecialCells(xlCellTypeVisible).Select
Set X = Selection
Sheets("Template").Select
Range("D8").Select
X.Copy
Selection.PasteSpecial Paste:=xlPasteValues
End If
Sheets("Transaction").Select
If Cells(lr, 17).Value = "To" Then
Range(Cells(2, 18), Cells(lr, 18)).Select
Selection.SpecialCells(xlCellTypeVisible).Select
Set X = Selection
Sheets("Template").Select
Range("F8").Select
X.Copy
Selection.PasteSpecial Paste:=xlPasteValues
End If
3条答案
按热度按时间pw9qyyiw1#
如果要将值从工作表Transaction复制到工作表Template中的不同列但相同行,可以执行以下操作
pokxtpni2#
我已经过滤了名称,所以只需将相同名称和相同编号的数据复制到其他工作表中
ddhy6vgd3#
复制条件行