想請問是哪邊有誤呢?請指教
Dim count As Integer
Sub 測試遞迴()
count = 1
測試 (count)
End Sub
Function 測試()
If count <= 5 Then
Cells(5, count) = count
count = count + 1
測試 (count) <========錯誤顯示在這行上面
End If
End Function
更新1:
請問VBA有需要定義回傳值資料型態嗎? 例如像C++的函數就需要,如: void sub (void) 又或者 int sub(char a)