excel中怎么写宏,让整个表格中,用鼠标点,除第一行外的单元格自动生成对...
发布网友
发布时间:2024-10-19 06:25
我来回答
共1个回答
热心网友
时间:2024-11-18 07:18
生成对应值有不同选项:
1、取对应值,空值为0,自动格式(数值为数值,字符为字符)
2、复制对应值,空值仍为空值,格式相同
3、取对应值,空值转为零长度字符,自动格式
下面以选项2为例:
if len(target.value)>0 then
target.clearcontents
else
target.offset(1-target.row,0).copy target
end if