0
這裏是我的excel表例如:防止在列中輸入次數超出給定數量更多的字符範圍,Excel的VBA
Private Sub test2()
Dim count As Long
Dim a As String
Dim Act As Integer
Worksheets("test").Activate
a = ActiveCell.Offset(0, -1).Value
' "count" counts the occorance of "b"
count = Application.WorksheetFunction.CountIf(Range("A2:A16"), a)
Act = ActiveCell
If count > Act Then
MsgBox "exceeded"
Else
MsgBox count
End If
End Sub
`
你的問題是? –
@JohnColeman我認爲標題本身就是個問題,嘿嘿 – Sgdva
@Sddva無疑與它有關,但是代碼的問題是什麼?我沒有動力來運行它,並猜測*問題是什麼。 –