将图片从一本书复制到另一本书

时间:2017-07-25 09:46:35

标签: excel vba excel-vba

我有两本工作簿。源工作簿(1)和目标工作簿(2)。 我正在将所有内容从1复制到2。 我为此运行了以下代码。 我的工作簿有一个小问题。 我的源书中有图片,如下图所示。

我已将要复制的列包含在我的代码中。但我没有得到那些照片。有人可以告诉我如何使用以下代码将这些图片与内容复制到我的目的地表。

@IgnoreExtraProperties
@Entity(tableName = CarModel.TABLE_NAME,
    indices = {@Index(value = "car_name", unique = true)})
public class CarModel {

    public static final String TABLE_NAME = "cars";

    @PrimaryKey(autoGenerate = true)
    private int id;

    @ColumnInfo(name = "car_name")
    private String name;

    @ColumnInfo(name = "car_price")
    private String price;

    private String type;
    private String position;
}

The sample picture shows the model of the picture that looks in my original sheet. The sample picture contains two pictures but the original sheet contains 16 columns. With the present code I get the contents copied. I would like to copy the pitures also available in my column有人可以建议,我如何将带有内容的图片复制到目标工作簿。

1 个答案:

答案 0 :(得分:2)

而不是

y.Sheets("2").Range("A4").PasteSpecial

y.Sheets("2").Paste y.Sheets("2").Range("A4")