以下是我的 vba 代码,我在其中向单元格填充数据,我所要做的就是锁定相同的单元格并为它们添加一些颜色。
//VBA:-
ActiveWorkbook.Names("book.a.").RefersToRange = doc.getAttribute("a")
ActiveWorkbook.Names("book.b.").RefersToRange = doc.getAttribute("b")
ActiveWorkbook.Names("book.c.").RefersToRange = doc.getAttribute("c")
ActiveWorkbook.Names("book.d.").RefersToRange =doc.getAttribute("d")
怎么做?我必须对更多的细胞这样做。你有什么建议?提前致谢。