哇咔咔,只有想不到,没有做不到。嚯

马成功老师
马成功老师

创作者俱乐部成员

挑逗一下wps表格ai,没想到真能实现了:

随机在选中的单元格中填充随机色

自动生成的js代码:

function Macro(){

const selectedRange = Application.Selection

const rowCount = selectedRange.Rows.Count

const colCount = selectedRange.Columns.Count

for (let i = 1; i <= rowCount; i++) {

for (let j = 1; j <= colCount; j++) {

const randomColor = RGB(Math.floor(Math.random() * 256), Math.floor(Math.random() * 256), Math.floor(Math.random() * 256))

selectedRange.Cells(i, j).Interior.Color = randomColor

}

}

}

=======================

北京
浏览 75
收藏
5
分享
5 +1
1
+1
全部评论 1
 
王禹成
王禹成

创作者俱乐部成员

学习
· 浙江省
回复