VBA中ActiveCell就是当前选中的单元格
如下步骤可实现要求:
1.插入按钮
2.选择新建
3.写入代码
4.点击按钮,填充当前单元格内容
录个宏就知道代码了.
简化后类似这样
Sub test()
Range("a:a").NumberFormatLocal = "0.00"
Range("b1:b10").NumberFormatLocal = "0.00%"
Range("c1:f5").Interior.ColorIndex = 5
End Sub