用Excel随机点名程序,能否自动定位到被点中的那一项上?
发布网友
发布时间:2022-04-21 07:47
我来回答
共2个回答
热心网友
时间:2023-11-07 09:34
Sub PickSomebody()
Dim class As Range
Set class = Range("A2", Range("A2").End(xlDown))
n = class.Rows.Count
' get a random seed first,to get the random number
Randomize
s = (Int(n * Rnd + 1))
MsgBox class(s)
Cells(s + 1, 1).Select
End Sub
热心网友
时间:2023-11-07 09:35
新鲜,比我用的好多了!