【发布时间】:2015-03-16 15:03:33
【问题描述】:
我正在尝试设置一个进度条,以便查看我的 sub 是否正在运行,如果我设法冻结了 excel。我正在查看here 的答案之一,但它不起作用。
这是我所拥有的:
Dim n As Integer
With Worksheets("Data_History")
Set starting_cell_range = .Range(find_last_column("Data_History"))
For n = 0 To 18
starting_cell_range.Offset(n, 1) = final_array(n)
Application.StatusBar = "Progress: " & n & " of 18" & Format(n / 18, "0%")
Next n
Application.StatusBar = False
End With
因为我使用的是 Mac,所以它无法正常工作吗?
【问题讨论】: